Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The error messages are strange.#!/perl/bin require Exporter; use lib ("/perl/lib/Net"); use Net::FTP; $ftp = Net::FTP->new("droid.fit.qut.edu.au", Passive => True) or die "Can't open connect: $@\n"; $ftp->login("n2212811","asturias7") or die "Can't login: $@\ +n"; $ftp->cwd(); $ftp->cwd("/n2212811/public_html/scripts") or die "Can't open connec +t: $@\n"; $ftp->get("exp.txt"); $ftp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: I Need to Use Net::FTP but its not working?
by eg (Friar) on Feb 04, 2001 at 13:26 UTC | |
by Fastolfe (Vicar) on Feb 04, 2001 at 20:18 UTC | |
|
Re: I Need to Use Net::FTP but its not working?
by eLore (Hermit) on Feb 04, 2001 at 20:21 UTC | |
|
Re: I Need to Use Net::FTP but its not working?
by Anonymous Monk on Feb 05, 2001 at 01:24 UTC |