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