Help for this page

Select Code to Download


  1. or download this
    use LWP::Simple qw(&getstore $ua);
    
    $ua->proxy(http => 'http://www.tau.ac.il/tau.pac');
    ...
    my $url='http://www.yahoo.com';
    my $file='test.html';
    print "success" if (getstore($url, $file));
    
  2. or download this
    use LWP::UserAgent;
    
    open WFH, ">test.html" or die($!); 
    ...
        } else {
        die $response->status_line;
        }