in reply to FTP Transfer Status
use Net::FTP;
$ftp = Net::FTP->new("ftp.microsoft.com", Debug => 0);
$ftp->login("anonymous",'-anonymous@');
$ftp->cwd("MISC");
$ftp->hash(STDOUT,1024);
$ftp->get("NBFCP.TXT");
$ftp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: FTP Transfer Status
by DrManhattan (Chaplain) on Mar 11, 2003 at 19:44 UTC | |
by allyc (Scribe) on Mar 11, 2003 at 21:18 UTC | |
by DrManhattan (Chaplain) on Mar 11, 2003 at 23:17 UTC |