Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    print $contents;
    
    unlink "foo.txt";
    
  2. or download this
    use warnings;
    use strict;
    ...
    $sftp->get($file, \*STDOUT) or die "get failed: " . $sftp->error;
    
    warn $contents;