美文网首页
python kill指定进程

python kill指定进程

作者: 小北觅 | 来源:发表于2021-12-02 11:20 被阅读0次

    根据需要,把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')
    
    

    相关文章

      网友评论

          本文标题:python kill指定进程

          本文链接:https://www.haomeiwen.com/subject/yiccsltx.html