Help for this page

Select Code to Download


  1. or download this
    use LWP::Simple 'getstore';
    my $url = 'http://some.domain.com/image.gif';
    my $file = '/tmp/image.gif';
    getstore( $url, $file );
    
  2. or download this
    open F, ">$file" or die "Could not write $file Perl says reason $!\n";
    binmode F;   # may be important does no harm it not needed