Help for this page

Select Code to Download


  1. or download this
    $params{'debug'} = 'true';
    
  2. or download this
     my $ssh = Net::SSH::Perl->new($srvr, protocol => 2, debug => 1);
    
  3. or download this
    
    my (my $stdout, my $stderr, my $exit2) = $ssh->cmd('ls -l');
    
  4. or download this
    my ($stdout, $stderr, $exit2) = $ssh->cmd('ls -l');