Well, I have this script that I'm trying to write using the FTP module,
however it keeps responding with an error message concerning the login line
of the script whenever I try to run it. I have run out of ideas and have
absolutely no clue as to what the problem is. It is driving me crazy. Below
is an excerpt of the script. Help!
use Net::FTP;
print "Username?";
$username = <STDIN>;
print "Password?";
$password = <STDIN> ;
print "ftp_home?";
$ftp_home = <STDIN>;
print "The filename you are searching for is...";
$filename = <STDIN>;
$ftp = Net::FTP->new($url, Debug=>0);
$ftp->login( $username , $password );
print $ftp->cwd($ftp_home), "\n";
$ftp->get($filename);
$ftp->quit;
_________________________________________________________________
Descargue GRATUITAMENTE MSN Explorer en http://explorer.msn.es/intl.asp
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]