Help for this page

Select Code to Download


  1. or download this
      use strict;
      use warnings;
    ...
      system('ftp', '-N', 'mystartfile', 'ftp.server.com') && die "FTP FAI
    +LURE: $!\n";
      chdir('/where/I/was/before');
    # ...
    
  2. or download this
    machine ftp.server.com
    login me
    ...
    cd /path/to/fetch/from
    mget *
    bye
    
  3. or download this
    system('ftp -N mystartfile ftp.server.com &') && die "Couldn't start f
    +tp transfer: $!\n";