Help for this page

Select Code to Download


  1. or download this
    my (@out1, $err1, $exit2) = $ssh->cmd("df -k");
    
  2. or download this
    my ($out1, $err1, $exit2 = $ssh->cmd("df -k");
    my @out1 = split /\n/, $out1;
    ...