- or download this
sub get_ftp_object{
use strict;
use Net::FTP;
...
or die "Couldn't login\n";
return $ftp;
}
- or download this
Permission denied at /usr/local/share/perl/5.22.1/Net/SFTP.pm line 62. - or download this
sub get_ftp_object{
use strict;
use Net::SFTP;
...
or die "Couldn't login\n";
return $sftp;
}
- or download this
# returns the new object
sub init {
my $sftp = shift;
...
$sftp;
}