Help for this page

Select Code to Download


  1. or download this
    my @files=("http://domain.com/file1","http://domain.com/file2","http:/
    +/domain.com/file3");
    foreach my $filename(@files)
    {
       `wget $filename`;
    }
    
  2. or download this
    use LWP::Simple;
    my @files=("file1.gz","file2.gz","file3.gz");
    ...
           my $url=$domain.$file
           getstore($url, $file) or print "failed to get $url\n";
    }