Help for this page

Select Code to Download


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