in reply to
Process Monitoring Script
To check whether a certain process is still running, use:
my $alive = (kill 0 => $pid);
[download]
I personally use this to check on running processes from the crontab, and restart them if this check fails.
Comment on
Re: Process Monitoring Script
Download
Code
In Section
Seekers of Perl Wisdom