- or download this
open(FilesToGet, "FilesToGet.txt")
or die "can't open FilesToGet.txt: $!";
while (<FilesToGet>) {
- or download this
$TheFile = $_;
chomp($TheFile);
$INFILE = $TheFile;
- or download this
chomp;
$ftp->get($_);
- or download this
#!/usr/bin/perl -w
use Net::FTP;
...
$ftp->get($_);
}
$ftp->quit;