- 论坛徽章:
- 4
|
回复 1# mcumsigscr
我用sshd试验了下,好像你的shell在我的debian 7上不能正常工作。
不过,如果命令正确的话,可以用下面的方法:- import subprocess
- import re
- def findProcess(processName):
- command = "ps -ef | grep " + processName
- ps = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
- output = ps.stdout.read()
- ps.stdout.close()
- ps.wait()
- return output
- def isProcessRunning(processName):
- output = findProcess(processName)
- if re.search('/usr/sbin/' + processName, output) is None:
- return False
- else:
- return True
- if __name__ == '__main__':
- if len(sys.argv) > 1:
- print isProcessRunning(argv[1])
复制代码 |
|