Python Language , using "ps" and "grep" to find the processes and kill

#!/usr/bin/python
import subprocess, re
from subprocess import Popen
from subprocess import PIPE

keyword = "sample"  # Setting "grep" keyword
ptn = re.compile("\s+")

p1 = Popen(["ps", "-aux"], stdout=PIPE)
p2 = Popen(["grep", keyword], stdin=p1.stdout, stdout=PIPE)
p1.stdout.close()
output = p2.communicate()[0]
print("Output:\n{0}".format(output))
lines = output.strip().split("\n")
for line in lines:
    items = ptn.split(line)
    print("kill {0}...".format(items[1], subprocess.call(["kill", items[1]])))

留言

這個網誌中的熱門文章

error message : configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: "%)']/following::android.widget.EditText"

OSError: [Errno 22] Invalid argument: