in reply to perl program status
Try doing a ps and grep for the process while it is running, you should see it there nicely with its current status.#!/usr/bin/perl exit if fork; my $dollar_0 = $0; $0 = "$dollar_0 (first)"; sleep(4); $0 = "$dollar_0 (second)"; sleep(4); $0 = "$dollar_0 (third)"; sleep(4);
|
|---|