Lusercop wrote: > On Tue, Jun 06, 2006 at 12:59:05PM +0100, Thomas Yandell wrote: > >> if (my $child = fork) { >> else { >> > > Where's the "fork() failed" error handling? > > Grr. > > My bad: my $child = fork; die "could not fork" unless defined $child; if ($child) { ... Tom