in reply to Re^2: using Net::FTP to get a file without a full namein thread using Net::FTP to get a file without a full name
my @list = $ftp->ls(); my @files = grep { /some pattern.*/ } @list; foreach my $file (@files) { $ftp->get($file); } [download]