Help for this page

Select Code to Download


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