如何在Python中获取进程列表?

时间:2009-07-07 09:41:40

标签: python unix kill ps processlist

如何在Unix上获取Python中所有正在运行的进程的进程列表,其中包含命令/进程名称和进程ID,因此我可以过滤并终止进程。

4 个答案:

答案 0 :(得分:7)

在Linux上,使用适当的最新Python,其中包含subprocess模块:

from subprocess import Popen, PIPE

process = Popen(['ps', '-eo' ,'pid,args'], stdout=PIPE, stderr=PIPE)
stdout, notused = process.communicate()
for line in stdout.splitlines():
    pid, cmdline = line.split(' ', 1)
    #Do whatever filtering and processing is needed

您可能需要根据具体需要稍微调整ps命令。

答案 1 :(得分:5)

Python中正确的可移植解决方案正在使用psutil。您有不同的API与PID交互:

>>> import psutil
>>> psutil.pids()
[1, 2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, ..., 32498]
>>> psutil.pid_exists(32498)
True
>>> p = psutil.Process(32498)
>>> p.name()
'python'
>>> p.cmdline()
['python', 'script.py']
>>> p.terminate()
>>> p.wait()

......如果你想“搜索并杀死”:

for p in psutil.process_iter():
    if 'nginx' in p.name() or 'nginx' in ' '.join(p.cmdline()):
        p.terminate()
        p.wait()

答案 2 :(得分:2)

在linux上,最简单的解决方案可能是使用外部ps命令:

>>> import os
>>> data = [(int(p), c) for p, c in [x.rstrip('\n').split(' ', 1) \
...        for x in os.popen('ps h -eo pid:1,command')]]

在其他系统上,您可能需要将选项更改为ps

不过,您可能希望在manpgrep上运行pkill

答案 3 :(得分:-2)

为何选择Python?
您可以直接在流程名称上使用killall