Help for this page

Select Code to Download


  1. or download this
    parent { push @child_pids, $_[0] }
    
  2. or download this
    # wait to reap all children
    for my $pid (@child_pids)
    {
        waitpid $pid, 0;
    }