http://qs321.pair.com?node_id=550403


in reply to Automatically killing a child

For the two-argument open() , the '-|' argument means fork.

The parent can reap the children with wait(), or waitpid(), or for some operating systems can reap them automatically by setting the CHLD signal. See perlipc for examples.