Re: FTP perl script
At 06:14 PM 7/10/01 +0200, Jean-Pascal Dezalay wrote: >I wrote a perl script to make a FTP connection to a remote machine like this > ># >#!/usr/local/bin/perl >open (FTP, " | ftp -v -n remote.comp.fr"); >print FTP, "user username pas
FTP perl script
I wrote a perl script to make a FTP connection to a remote machine like this # #!/usr/local/bin/perl open (FTP, " | ftp -v -n remote.comp.fr"); print FTP, "user username passwd\n"; print FTP, "bin\n"; print FTP, "prompt\n"; print FTP