Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The server I am trying to get the file from is behind a firewall. I am on a NT workstation trying to get a file off a Solaris 7 server.use Net::FTP; $ftp = Net::FTP->new("myserver@here.com", Debug => 0); $ftp->login("myname","mypassword") || die "Did not work:$!\n"; $ftp->cwd("/usr/home/myname"); $ftp->get("test.txt"); $ftp->quit;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: ftp attempt
by gav^ (Curate) on Sep 10, 2002 at 12:06 UTC | |
Re: ftp attempt
by helgi (Hermit) on Sep 10, 2002 at 12:59 UTC |