美文网首页回忆中的明天
通过端口号关闭当前进程

通过端口号关闭当前进程

作者: MLeo | 来源:发表于2019-09-29 11:01 被阅读0次

    使用Shell脚本的方式,通过端口号来关闭当前进程

    查看脚本:

    lsof  -i TCP:9100 | grep LISTEN | awk '{print $2}'
    
    

    使用到三个命令lsofgrepawk

    lsof 获取端口进程列表

    grep 精准匹配进程

    awk 获取进程号

    完整示例:

    #!/bin/bash
    
    PROCESS=echo | lsof  -i TCP:9100 | grep LISTEN | awk '{print $2}'
    if [ $PROCESS ]; then
    kill -9 $PROCESS
    echo kill $PROCESS
    fi
    
    

    联系方式:

    邮箱:iChochy@qq.com
    网站:https://www.ichochy.com
    源文:https://www.ichochy.com/blog/2019/04/12/通过端口号关闭当前进程.html

    相关文章

      网友评论

        本文标题:通过端口号关闭当前进程

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