Hey monks. I've got a script that uses Net::FTP. For all intents and purposes, it works well. However, I'd like to do "mget *" where I can download a whole directory. Apparently Net::FTP doesn't support this. Any suggestions?
Cheers
UPDATE:
I used LWP to grab the URL that has the file list. Ran a regex on each line, made a file list like that, and will now feed it to the $ftp->get() function.