Help for this page

Select Code to Download


  1. or download this
    my @pids = map $ssh->spawn(@$_), @cmds;
    
  2. or download this
    my @pids;
    for my $cmd (@cmds) {
      push @pids, $ssh->spawn(@$cmd);
    }