$ kill -9 `ps aux | grep test | grep -v grep | awk ‘{print $2}‘`
杀掉含有test且不含有grep的进程,后面的 awk ‘{print $2}‘ 是进程号
原文地址:https://www.cnblogs.com/lyc94620/p/10451159.html
时间: 2024-10-24 08:29:15
$ kill -9 `ps aux | grep test | grep -v grep | awk ‘{print $2}‘`
杀掉含有test且不含有grep的进程,后面的 awk ‘{print $2}‘ 是进程号
原文地址:https://www.cnblogs.com/lyc94620/p/10451159.html