Help for this page

Select Code to Download


  1. or download this
    my $ua = LWP::UserAgent->new;
    $ua->cookie_jar( {} ); # auto calls HTTP::Cookies->new
    ...
    $ua->timeout( 10 );
    $ua->show_progress ( 1 );
    $response = $ua->get( $ClickHere, ':content_file' => './eraseme.bin' )
    +;
    
  2. or download this
    my $ua = LWP::UserAgent->new;
    $ua->timeout( 10 );
    ...
        ':content_file' => './eraseme.bin',
        'Cookie'        => 'oraclelicense=accept-securebackup-cookie',
    );