Greetings Monks,
I am a perl newbie, for better or worse, converting old DOS and Unix shell scripts to Perl is now one of my responsibilities. That said, one of the scripts I am converting is being used to ftp files from server to server. I have been told that the ftp command MUST use the follwing command line arguments:
ftp -v -i -n -s
I have the Net::FTP module installed and was able to make the ftp work inside the script, but I can't figure out how to add those command line options to the:
$ftp -> login("username", "password")
Any suggestions would be greatly appreciated. Thanks Monks!