Help for this page
my $pid=fork(); if ( $pid == 0 } { ... # WOAH! We should never get here! die "fork returned $pid"; }
my $pid=fork(); if (not defined $pid) { ... : parent process wait(); # Wait for the child to exit }