美文网首页
Linux小技巧

Linux小技巧

作者: 多啦A梦詹 | 来源:发表于2022-04-19 16:49 被阅读0次

    根据PID查看具体代码

    ps -aux |grep -v grep|grep 28990
    

    批量杀死命令

    ps -ef | awk '{print $2}' | xargs kill -9
    

    相关文章

      网友评论

          本文标题:Linux小技巧

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