Search notes:

Perl module Net::FTP::Recursive

use warnings;
use strict;
use Net::FTP::Recursive;

if (@ARGV != 4) {
  die "I need host, username, password  remote dir";
}

my $ftp = Net::FTP::Recursive->new(shift) or die;
$ftp -> login(shift, shift) or die;
$ftp -> cwd(shift);

# $ftp -> binary;

$ftp -> rget();
Github repository PerlModules, path: /Net/FTP/Recursive/script.pl

See also

Perl module Net::FTP::File
Perl modules.

Index