Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $runner->run( sub { system("perl scraper4.pl") });
    $runner->run( sub { system("perl scraper5.pl") });
    $runner->finish;
    
  2. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
        my ( $stdout, $stderr, $exit ) = $ssh->cmd($cmd);
        print $stdout, "\n";
    }