#!/usr/bin/perl use LWP::Simple; my $content = get 'http://www/mypage.html'; #### #!/usr/bin/perl use LWP::Simple; my $url = shift @ARGV; my $content = get $url; #### perl -MLWP::Simple -e 'print get "http://www/mypage.html"'