Vemulakonda Uday Bhaskar wrote at Tue, 01 Jul 2003 09:11:00 +:
> my code looks like this:
>
> #!/usr/bin/perl
Missing
use strict;
use warnings;
> $ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected";
or
> $u=;
> CHOMP $u;
^
cho
vemulakonda uday bhaskar wrote:
hi all
my code looks like this:
#!/usr/bin/perl
$ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected";
$u=;
CHOMP $u;
$p=;
CHOMP $p;
$ftp->login($u,$p) or die "login failed";
the code is working fine
but the problem is when it asks password i need to give
hi all
my code looks like this:
#!/usr/bin/perl
$ftp=Net::FTP->new("xxx.xxx.xxx.xxx") else die "not connected";
$u=;
CHOMP $u;
$p=;
CHOMP $p;
$ftp->login($u,$p) or die "login failed";
the code is working fine
but the problem is when it asks password i need to give it , and
so is visible to all.