Help for this page

Select Code to Download


  1. or download this
    $pid=fork;
    if ($pid==0)
    ...
    {do what I want to do with this script??}
    
    else {die because of fork error }
    
  2. or download this
    use warnings;
    $pid = fork;
    ...
        warn "ok, collected the child successfully";
    }
    __END__