通常在使用ps命令后用管道连接查询特定进程会显示grep进程本身
如:
- ps aux | grep init
- 输出如下:
- root 1 0.0 0.3 2760 1600 ? Ss Mar08 0:03 /sbin/init
- tester 10192 0.0 0.1 3328 876 pts/0 S+ 12:41 0:00 grep --color=auto init
过滤掉grep进程本身的输出:
1.
- ps aux | grep init | grep -v grep
- root 1 0.0 0.3 2760 1600 ? Ss Mar08 0:03 /sbin/init
2.在进程名任何一个字母上添加[]
- ps aux | grep ini[t]
- 输出:
- root 1 0.0 0.3 2760 1600 ? Ss Mar08 0:03 /sbin/init
阅读(4590) | 评论(0) | 转发(0) |