say a ruby script is running

ruby.rb SOMEUSERID

using PHP, how can i find out whether something exactly like that is currently running or not ? Currently i am using PID to check but im not sure if this is efficient. What if there are lot of users running the ruby script, and the ruby script unexpectedly closes. The php script now looks for this PID, and then it turns out it's somebody else's ruby script....trouble ensues.

link|improve this question

50% accept rate
thanks edited. g – gpwu Oct 26 '09 at 20:00
you should remove the ruby tag, as this question is about php and not ruby – johannes Oct 26 '09 at 20:27
feedback

2 Answers

up vote 0 down vote accepted

I don't like the idea but you can do this on linux

exec('ps -A | grep ruby.rb', $output);

not sure what's about other systems.

link|improve this answer
feedback

Parse output from 'ps ax' perhaps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.