Help for this page

Select Code to Download


  1. or download this
    if (my $pid = fork()) {  # a true or non-zero value for the parent
        # stuff
    ...
    else {                   # a false value or 0 for the child
        # stuff
    }
    
  2. or download this
    foreach my $wks (@wkslist) {
        my $pid = fork;
    ...
           print "non zero exit from $pid: $?";
        }
    }