http://www.perlmonks.org?node_id=136578


in reply to Re: mysterious fork() failure
in thread mysterious fork() failure

"...the child will be killed by the system's init process before it runs." is not true in Unix systems.

If the parent exits/dies before the child, init will become its parent and wait() for it.