I am new to perl programming. I am trying to create a program that will test ftp for several different servers. I do
system(ftp servername)
then I want to someone input the user name, password, test a file, delete the file, and close the ftp without having to type that info into the command line. I tried to pipe the info in like
mylogin|system(ftp servername)
when i tried using Shell nothing happened at all.