如何使用 Python 脚本来 grep iTunes 进程

如何使用 Python 脚本来 grep iTunes 进程
import os, signal

def check_kill_process(iTunes):
    for line in os.popen("ps ax | grep " + iTunes + " | grep -v grep"):
        fields = line.split()
        pid = fields[0]
        os.kill(int(pid), signal.SIGKILL)

相关内容