Help for this page

Select Code to Download


  1. or download this
      die "unable to fork: $!" unless (defined(my $id = fork());
      if ($id == 0) {
        exec($testpath) or die "unable to exec $testpath: $!\n";
      }
    
  2. or download this
    while (wait > -1) {};