phathead22 has asked for the wisdom of the Perl Monks concerning the following question:
use Net::FTP; my $servert = "xxxx"; my $logint = "xxxx"; my $passt = 'xxxx'; my $file = "wftp1.txt"; my $targetdir = "/xxx/xxxx/xxxx/xxx"; $ftp = Net::FTP->new("$servert", Debug => 0); $ftp->login("$logint",'$passt'); $ftp->cwd("$targetdir"); $ftp->put("$file"); $ftp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Naming problem?
by kschwab (Vicar) on Feb 02, 2001 at 07:02 UTC | |
|
Re: Naming problem?
by arturo (Vicar) on Feb 02, 2001 at 05:02 UTC | |
|
Re: Naming problem?
by Fastolfe (Vicar) on Feb 02, 2001 at 04:51 UTC | |
|
Re: Naming problem?
by chipmunk (Parson) on Feb 02, 2001 at 04:50 UTC |