4
votes
4answers
2k views
How do you check in Linux with Python if a process is still running?
The only nice way I've found is:
import sys
import os
try:
os.kill(int(sys.argv[1]), 0)
print "Running"
except:
print "Not running"
…
