jonp has asked for the wisdom of the Perl Monks concerning the following question:
use Net::SFTP; my $host = "cib-xcluster.biotec.usu.edu"; my %args = ( user => 'user', password => 'pass', debug => 0, protocol => '1,2', port => '22', ); print "connecting to $host . . .\n"; my $sftp = Net::SFTP->new($host, %args); print "Finished\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::SFTP error
by idsfa (Vicar) on Oct 07, 2005 at 18:09 UTC | |
|
Re: Net::SFTP error
by pboin (Deacon) on Oct 06, 2005 at 21:15 UTC |