Linux通过命令查找指定的进程并自动杀死。
ps -ef | grep s_app | grep -v grep | awk '{print $2}' | xargs kill -9
ps -ef 表示列出所有进程.
grep s_app 表示查找要杀死的进程。这个s_app 就是要查找杀死的进程名字.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc,char **argv)
{
system("ps -ef | grep s_app | grep -v grep | awk '{print $2}' | xargs kill -9");
while(1)
{
printf("当前线程正在运行.\n");
sleep(1);
}
return 0;
}