Help for this page

Select Code to Download


  1. or download this
    use Net::FTP;
    
    ...
    $ftp->cwd("/pub");
    $ftp->get("that.file");
    $ftp->quit;
    
  2. or download this
    use LWP::Simple;
    
    getstore 'ftp://ftp.somedomain.com/somefile.txt',
             'somefile.txt';