Help for this page
$pid = "/var/log/syslog.pid"; unless (stat($pid)) { print "$pid not running\n"; }
$pid = "/var/run/syslogd.pid"; if (stat($pid)) { ... } else { print "$pid not running\n"; }