in reply to FTP
Should be as easy as that, or if you're doing anonymous ftp access you could use the LWP::Simple module with even greater ease.use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0); $ftp->login("anonymous",'-anonymous@'); $ftp->cwd("/pub"); $ftp->get("that.file"); $ftp->quit;
use LWP::Simple; getstore 'ftp://ftp.somedomain.com/somefile.txt', 'somefile.txt';
_________
broquaint
|
|---|