The question title says it all. If there is more than one way, please list them. :) I only know of one, but I'm wondering if there is a cleaner, in-Ruby way.
|
|
If it's a process you expect to "own" (e.g. you're using this to validate a pid for a process you control), you can just send sig 0 to it.
|
||||||||||
|
|
|
You can try using
where pid is the pid number, if the pid is running it should return 1. |
||
|
|
|
|
@John T, @Dustin: Actually, guys, I perused the Process rdocs, and it looks like
is a less violent means of applying the same technique. |
||
|
|
|
|
Parse the output of ps. |
||
