linux下grep查找进程

1、查找指定进程

 ps -ef | grep mmp-front  //mmp-front是进程关键字

这里写图片描述

第一条记录是查找出的进程;第二条结果是grep进程本身,并非真正要找的进程。

2、查找指定进程个数

ps -ef | grep mmp-front -c  或者
ps -ef | grep -c mmp-front

这里写图片描述

3、不显示本身进程

 ps -aux | grep mmp-front

这里写图片描述

 ps -aux | grep mmp-front | grep -v "grep"

这里写图片描述

ps -aux | grep \[m]mp-front

这里写图片描述

你可能感兴趣的:(服务器,linux)