Skip to content

Instantly share code, notes, and snippets.

@andrewvc
Created September 17, 2010 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewvc/584917 to your computer and use it in GitHub Desktop.
Save andrewvc/584917 to your computer and use it in GitHub Desktop.
#Check if a pid is running
def pid_running?(pid)
begin
Process.getpgid(pid)
rescue Errno::ESRCH
false
else
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment