You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
395 B
Perl

use Net::FTP;
$ftp = Net::FTP->new("ftp.cpan.org", Timeout => 30)
or die "Could not connect.\n";
$username = "anonymous";
$password = "asdf";
$ftp->login($username, $password)
or die "Could not log in.\n";
$ftp->cwd('/pub/CPAN');
$remotefile = "CPAN.html";
$localfile = "file.txt";
$ftp->get($remotefile, $localfile)
or die "Can not get file.\n";