根据需要,把grep后面的内容自行替换
# -*- coding:utf-8 -*-
import os
import re
print('------')
# os.popen() 调用 read() 方法有返回值
b = os.popen('ps -aux | grep hivettlspring-0.0.1').read()
ls = b.split('\n')
for i in ls:
if ' hivettlspring-0.0.1' in i:
c = re.search('(?sm)\w*\s*(\d*)', i)
# os.system() 运行 Linux 命令没有返回值,直接运行
os.system('kill -9 %s' % c.group(1))
print(c.group(1), 'kill')
网友评论