2016年3月24日 星期四

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]])))

沒有留言:

 Ubuntu has a mechanism, that is, the installed network card (NIC) will be renamed to another name when the system is booted. Although there...