Help for this page
my $PID = fork(); if ($PID) { ... else { # in the child process }
my $PID = fork(); if ($PID) { ... # process, depending on whether the fork() # succeeded or failed. }