fagersz has asked for the wisdom of the Perl Monks concerning the following question:
do_ftp() { PASSW="Peleton\@1";export PASSW /usr/bin/perl -e ' use warnings; use Net::FTP; use URI::Escape; my $host = $ARGV[0]; my $userid = $ARGV[1]; #my $passw = $ENV{'PASSW'}; #my $passw = $ARGV[2]; my $passw = "Peleton@1"; print "Host:$host\n"; print "user:$userid\n"; print "passw:$passw\n"; my $string = $passw; my $encode = uri_escape($string); print "encode:$encode\n"; my $ftp = Net::FTP->new($host, Timeout=>10); if (! $ftp) { print "connection failed!\n"; exit 1; } else { print "connected!\n"; } if (! $ftp->login($userid, $encode)) { print "login failed!\n"; exit 2; } else { print "login succeeded!\n"; } $ftp->close(); exit 0;' "ssssshostname.com" "dcatbond" "Peleton\@1" } # MAIN do_ftp
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: net::ftp - passwords
by uday_sagar (Scribe) on May 15, 2012 at 06:32 UTC | |
by fagersz (Initiate) on May 15, 2012 at 22:26 UTC | |
by roboticus (Chancellor) on May 16, 2012 at 00:27 UTC | |
by fagersz (Initiate) on May 18, 2012 at 04:03 UTC | |
by roboticus (Chancellor) on May 18, 2012 at 09:52 UTC |