in reply to Re^5: Need help in doing SFTP via command line
in thread Need help in doing SFTP via command line
## Connecting to SFTP server print "\n Connecting to SFTP Server \n"; my $sftp = Net::SFTP::Foreign->new(host => $url, user => $userName, password => $password, more => [-o => 'StrictHostKeyCheckin +g no'] ); $sftp->die_on_error("unable to connect to remote host");
|
|---|