我正在经历一些事情并找到了我无法理解的事情,
grep -v grep
这意味着什么?我知道-v
开关会选择所有不匹配的行。但为什么第二个grep
?
这是完整的命令:
ps -ef | grep rsync -avz \
| grep oradata${DAY}_[0-1][0-9] \
| grep -v grep \
| awk '{print $2}' | wc -l
答案 0 :(得分:7)
grep
与ps -ef
一起使用时,还会输出用于过滤grep
输出的ps -ef
。
grep -v grep
表示在命令输出中不包含用于过滤的grep
。
您还可以使用grep
模式在结果中避免regex
。
例如,在以下示例中,您不需要grep -v grep
来避免输出中的grep
:
ps -ef | grep [r]sync
这是另一个示例,显示不同的命令及其输出,注意第一个grep
也在输出中,而在最后两个grep
未打印在输出中:
$ ps -ef | grep ipython
501 18055 18031 0 12:44AM ttys000 0:00.00 /bin/bash /Users/amit/anaconda/bin/python.app /Users/amit/anaconda/bin/ipython notebook --profile=ocean
501 18056 18055 0 12:44AM ttys000 0:00.85 /Users/amit/anaconda/python.app/Contents/MacOS/python /Users/amit/anaconda/bin/ipython notebook --profile=ocean
501 18067 18031 0 12:44AM ttys000 0:00.00 grep ipython
$ ps -ef | grep ipython | grep -v grep
501 18055 18031 0 12:44AM ttys000 0:00.00 /bin/bash /Users/amit/anaconda/bin/python.app /Users/amit/anaconda/bin/ipython notebook --profile=ocean
501 18056 18055 0 12:44AM ttys000 0:00.85 /Users/amit/anaconda/python.app/Contents/MacOS/python /Users/amit/anaconda/bin/ipython notebook --profile=ocean
$ ps -ef | grep [i]python
501 18055 18031 0 12:44AM ttys000 0:00.00 /bin/bash /Users/amit/anaconda/bin/python.app /Users/amit/anaconda/bin/ipython notebook --profile=ocean
501 18056 18055 0 12:44AM ttys000 0:00.85 /Users/amit/anaconda/python.app/Contents/MacOS/python /Users/amit/anaconda/bin/ipython notebook --profile=ocean