in reply to How would I add a pause b/t forks in my $pid = $pm->start and next;
my $pid = $pm->start; if ($pid) { # this code runs in the parent sleep 3; next; } [download]
-sam