Say I have a PID, like 555. I want to see if that pid is running or has completed. I can check /proc/ but I don't have access to that in my production environment. What's the best way to do this, short of something hackish like opening a pipe to "ps"?
|
Use the
The documentation for
|
|||
|
|
Use
This is not required if you know you are always going to have permission to kill the process you are checking for, say because you are running as root or the process is known to be running under the same UID as the process checking it. |
|||
|
|
pscommand itself use /proc? – PleaseStand Dec 29 '10 at 3:11