Help for this page

Select Code to Download


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