Help for this page

Select Code to Download


  1. or download this
    $ftp->put(\*TR,$File);
    
  2. or download this
    open my($tr), "unix2dos $File |" or die $!; # Or FQ path
    $ftp->binary(); # We translate, not the server.
    $ftp->put($tr,$File); # must give remote name.
    
  3. or download this
    open my($fh), $File or die $!;
    $ftp->binary(); # We translate, not the server.
    $ftp->put($fh,$File); # must give remote name.