Help for this page

Select Code to Download


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