in reply to Net::SFTP::Foreign not workign properly on AIX
Update: Fixed typos#!/usr/local/bin/perl use strict; use warnings; use Carp; use Net::SFTP::Foreign; use constant HOST => 'localhost'; my $sftp = Net::SFTP::Foreign->new(HOST, more => '-v'); $sftp->error and croak "Unable to connect: " . $sftp->error;
|
|---|