Help for this page

Select Code to Download


  1. or download this
    my $child=fork(); # Spawn off a child 
    if ($child>0) {
    ...
    } else {
          die "Could not fork! $!";
    }