码迷,mamicode.com
首页 > 其他好文 > 详细

grep -v grep

时间:2019-10-08 12:33:35      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:就是   web   git   bsp   pts   gogs   com   nbsp   highlight   

1.grep 是查找含有指定文本行的意思,比如grep test 就是查找含有test的文本的行

2.grep -v 是反向查找的意思,比如 grep -v grep 就是查找不含有 grep 字段的行

比如 :

[isTester@iZ94b31ttqsZ]~# ps -ef|grep gogs
isTester.com 1883 1844 0 13:55 pts/0 00:00:00 grep gogs
git 6583 1 0 2018 ? 01:25:46 ./gogs web

加上grep -v grep ,就只剩下1行记录 。

[isTester@iZ94b31ttqsZ]~# ps -ef|grep gogs | grep -v grep
git 6583 1 0 2018 ? 01:25:46 ./gogs web

grep -v grep

标签:就是   web   git   bsp   pts   gogs   com   nbsp   highlight   

原文地址:https://www.cnblogs.com/zhangmingcheng/p/11634592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!