last modified: "#!/usr/bin/perl -w use strict; use LWP 5.64; use HTTP::Date; my $url = 'http://disobey.com/amphetadesk/'; my $browser = LWP::UserAgent->new; my $response = $browser->get( $url ); print "Got: ", $response->status_line; print "\n". "Epoch: " . $response->last_modified . "\n"; print "English: " . time2str($response->last_modified) . "\n";"