Help for this page

Select Code to Download


  1. or download this
    my $ftp = Net::FTP->new("my.ftp.server", Debug => 1, Passive => 1) or 
    +return;
    $ftp->login("myuser","mypass") or return;
    ...
    $ftp->binary;
    $ftp->put($file) or return;
    $ftp->quit or return;
    
  2. or download this
    >>> USER myuser
    <<< 331 User myuser OK. Password required
    ...
    
    <<< 221 Logout.