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

沒有留言:

Automatically classify folders by file name (windows Bash)

  REM List file names, sorted by file name--------- dir /b /on > list.txt REM Find JPG files findstr ".JPG" list.txt > targe...