in reply to Problem with Net::FTP
use warnings; use strict; use Net::FTP; my $ftp=Net::FTP->new(Host => "ftp.cpan.org", Firewall => "XXXX") or die "Couldnt connect:$@\n"; $ftp->login("anonymous"); $ftp->cwd("/pub/CPAN"); $ftp->get("README.html"); $ftp->close;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with Net::FTP
by cool (Scribe) on Jul 10, 2007 at 13:20 UTC |