Help for this page

Select Code to Download


  1. or download this
    if (!defined(my $pid = fork)) {
        print "Oh no\n";
    ...
    } else {
        print "in parent\n";
    }