grep是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgrep。
Pattern:由文本字符和正则表达式的元字符组合而成的匹配条件。
grep [OPTIONS] PATTERN [FILE...]
例子:# grep 'root' /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
grep常用相关选项:
-i:忽略大小写
例子:# grep -i 'root' /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
--color:带颜色显示
例子:# grep --color 'root' /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
注意:也可以给grep取别名带颜色显示。
例子:# aliasgrep='grep --color '
# grep 'root' /etc/passwd
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
-v:反向查找,显示没有被模式匹配到的行。
例子:# grep -v 'root' /etc/passwd
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
......
-o:只显示被模式匹配到的字符串。
例子:# grep -o 'root' /etc/passwd
root
root
root
root
原文链接:https://www.f2er.com/regex/361903.html