Help for this page
my @files=("http://domain.com/file1","http://domain.com/file2","http:/ +/domain.com/file3"); foreach my $filename(@files) { `wget $filename`; }
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"; }