51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

shell 去掉 color(显示不包含grep的进程)grep -v grep

现象:

[root@Server2012 eres]# ps -ef | grep 3822578
root     3822578       1 99 17:26 ?        00:01:56 java -Dspring.profiles.active=prod -jar /home/liuw/gzm/eres-service-1.0.0-SNAPSHOT.jar
root     3823681 3194133  0 17:27 pts/12   00:00:00 grep --color=auto 3822578

怎么把这个color 去掉呢?

ps -ef | grep 3822578 | grep -v grep

Linux中grep -v grep命令的作用-CSDN博客

赞(0)
未经允许不得转载:工具盒子 » shell 去掉 color(显示不包含grep的进程)grep -v grep