欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

grep -v 参数的使用

程序员文章站 2023-12-26 14:10:45
...

grep -v 参数的使用

-v 参数的意思是不显示匹配到的行 (默认是显示匹配到的行)

cat  abc.txt | grep -v  '^#'       不显示以#号开头的行

cat abc.txt | grep -v '#'   不显示有#号的行!

grep 一些其它常用参数!

-c  只输出匹配的行的个数!
[[email protected] home]#grep -c  "root" /etc/passwd 
2   #结果是2说明passwd文件中只有两行里面有"root"
-i  不区别大小写
[[email protected] home]# grep -i  "Root" /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin

-l 输出包含匹配的字符文件名
[[email protected] home]# grep -l root /etc/*    #列出/etc目录下文件中含有"root"的文件名
/etc/aliases
/etc/aliases.db
/etc/anacrontab
/etc/crontab
/etc/passwd

-n 显示匹配的行号
[[email protected] home]# grep -n  "root" /etc/passwd
1:root:x:0:0:root:/root:/bin/bash
11:operator:x:11:0:operator:/root:/sbin/nologin
-v 显示不包含匹配的文本所有行

-s 不显示不存在或无匹配文本的错误信息

转载于:https://my.oschina.net/denglz/blog/92840

上一篇:

下一篇: