How can I use Net::FTP to get a file matching a pattern?
Basically what I want to do is:
$ftp->get("test*");
Should match all files starting with test and do a get().
Thanks for any help!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this solution from perlmonks.org. Essentially do a remote ls, filter out what you don’t want with
grep, then fetch the files.BTW, this took about 10 seconds to find with Google “net::FTP mget”