#基本正则表达式: grep
字符匹配:
.:匹配任何单个字符
[root@VM_168_102_centos tmp]# cat grep.sh abc abd adc ace ade abe dab [root@VM_168_102_centos tmp]# grep ".a." grep.sh dab [root@VM_168_102_centos tmp]# grep "..b" grep.sh dab
[ ]:指定范围内的任意单个字符
[0-9]/[[:digit:]]:匹配所有数字
[root@VM_168_102_centos tmp]# grep "[0-9]" grep.sh a12 2345 qe2 [root@VM_168_102_centos tmp]# grep "...[0-9]" grep.sh 2345 [root@VM_168_102_centos tmp]# grep "[[:digit:]]" grep.sh a12 2345 qe2
[a-z]/[[:lower:]]:匹配所有小写字母
[root@VM_168_102_centos tmp]# grep "[a-z]b" grep.sh abc abd dab [root@VM_168_102_centos tmp]# grep "[[:lower:]]b" grep.sh abc abd dab
[A-Z]/[[:upper:]]:匹配所有大写字母
[root@VM_168_102_centos tmp]# grep "[A-Z]" grep.sh ABC aBE [root@VM_168_102_centos tmp]# grep "[[:upper:]]" grep.sh ABC aBE
[[:alpha:]]:匹配所有字母,不区分大小写
[root@VM_168_102_centos tmp]# grep "[[:alpha:]]" grep.sh
abc
a12
abd
adc
ace
ade
qe2
ABC
aBE
dab
[[:alnum:]]:匹配所有数字和字母
[root@VM_168_102_centos tmp]# grep "a[[:alnum:]]" grep.sh
abc
a12
abd
adc
ace
ade
aBE
dab
[[:space:]]:匹配空白的字符,包括空格键,Tab键,CR等
[root@VM_168_102_centos tmp]# grep "[[:space:]]" grep.sh
2 e
[[:punct:]]:匹配标点符号
[root@VM_168_102_centos tmp]# grep "[[:punct:]]" grep.sh
dab,
[^]:匹配指定范围外的任意单个字符
[root@VM_168_102_centos tmp]# grep "a[^a-z]" grep.sh a12 aBE [root@VM_168_102_centos tmp]# grep "a[^[:lower:]]" grep.sh a12 aBE
次数匹配:
*:匹配其前的任何数目或没有的单个字符(可以是0个)
[root@VM_168_102_centos tmp]# grep "ab*" grep.sh
abc
a12
abb
adc
ace
ade
aBE
dab,
.*:匹配任意长度的任意字符
[root@VM_168_102_centos tmp]# grep ".*" grep.sh abc a12 abb adc ace 2345 2 e ade qe2 ABC aBE dab,
\?:匹配前面正则表达式的零个或一个(前面一个字符可有可无)
[root@VM_168_102_centos tmp]# grep --color=auto "a\?bc" grep_1.sh
aabc
abc
aaabc
\{m\}:匹配前面的字符m次
[root@VM_168_102_centos tmp]# grep --color=auto "a\{2\}" grep_1.sh aabc aaabc [root@VM_168_102_centos tmp]# grep -E --color=auto "a{2}" grep_1.sh aabc aaabc
\{m,\}:匹配前面的字符至少m次
[root@VM_168_102_centos tmp]# grep --color=auto "a\{1,\}" grep_1.sh
aabc
abc
aaabc
\{0,n\}:匹配前面的字符最少0次最多N次
[root@VM_168_102_centos tmp]# grep --color=auto "a\{0,2\}b" grep_1.sh
aabc
abc
aaabc
\{m,n\}:匹配前面的字符最少m次最多n次
[root@VM_168_102_centos tmp]# grep --color=auto 'a\{1,2\}bc' grep_1.sh
aabc
abc
aaabc
位置锚定:用于指定字符出现的位置
^:锚定行首
[root@VM_168_102_centos tmp]# grep --color=auto "^a*b" grep.sh
abc
abb
$:锚定行尾
[root@VM_168_102_centos tmp]# grep --color=auto "c$" grep.sh
abc
adc
^$:空白行
[root@VM_168_102_centos tmp]# grep --color=auto "^$" grep.sh
\<或\b:锚定词首
[root@VM_168_102_centos tmp]# grep --color=auto "\<2" grep.sh 2345 2 e [root@VM_168_102_centos tmp]# grep --color=auto "\b2" grep.sh 2345 2 e
\>或\b:锚定词尾
[root@VM_168_102_centos tmp]# grep --color=auto "e\>" grep.sh ace 2 e ade [root@VM_168_102_centos tmp]# grep --color=auto "e\b" grep.sh ace 2 e ade
\(\):保留空间,可以将最多9个独立的子模式存储在单个模式中
[root@VM_168_102_centos tmp]# grep --color=auto "\(ab\)" grep_2.sh abababc abc ababc [root@VM_168_102_centos tmp]# grep --color=auto "\(ab\)c" grep_2.sh abababc abc ababc [root@VM_168_102_centos tmp]# grep --color=auto "\(ab\)*c" grep_2.sh abababc abc ababc
\n:重复在\(与\)方括号内第n个子模式至此点的模式
[root@VM_168_102_centos tmp]# grep --color=auto "\(a\)\(b\).*" grep.sh abc abb dab, abfa [root@VM_168_102_centos tmp]# grep --color=auto "\(a\)\(b\).*\1" grep.sh abfa [root@VM_168_102_centos tmp]# grep --color=auto "\(a\)\(b\).*\2" grep.sh abb
grep -v:显示不能被模式所匹配到的行
[root@VM_168_102_centos tmp]# grep -v --color=auto "\(ab\).*" grep.sh a12 adc ace 2345 2 e ade qe2 ABC aBE
grep -o:仅显示被模式匹配到的字串,而非正行;一行中可能有多个匹配,如果有多个匹配的话多行输出
[root@VM_168_102_centos tmp]# cat grep_2.sh abababc abc ababc [root@VM_168_102_centos tmp]# grep -o --color=auto "b" grep_2.sh b b b b b b
grep -i:不区分字符大小写
[root@VM_168_102_centos tmp]# grep -i --color=auto "abc" grep.sh
abc
ABC
grep-E:支持扩展的正则表达式
[root@VM_168_102_centos tmp]# grep -E -i --color=auto "abc" grep.sh
abc
ABC
#扩展正则表达式
egrep相当于grep �CE(不需要\转义)
字符匹配:
.:匹配任何单个字符
[ ]:指定范围内的任意单个字符
[^]:匹配指定范围外的任意单个字符
次数匹配:
*:匹配其前的任何数目或没有的单个字符(可以是0个)
.*:匹配任意长度的任意字符
?:匹配前面正则表达式的零个或一个(前面一个字符可有可无)
+:匹配前面的字符至少一次
[root@VM_168_102_centos tmp]# egrep --color=auto "ab+" grep_2.sh abababc abc ababc [root@VM_168_102_centos tmp]# grep -E --color=auto "ab+" grep_2.sh abababc abc ababc
{m}:匹配前面的字符m次
{m,}:匹配前面的字符至少m次
{0,n}:匹配前面的字符最少0次最多N次
{m,n}:匹配前面的字符最少m次最多n次
位置锚定:用于指定字符出现的位置
^:锚定行首
$:锚定行尾
^$:空白行
\<或\b:锚定词首
\>或\b:锚定词尾
( ):保留空间,可以将最多9个独立的子模式存储在单个模式中
|:或者
[root@VM_168_102_centos tmp]# egrep --color=auto '(abc|ABC)' grep.sh abc ABC [root@VM_168_102_centos tmp]# grep -E --color=auto '(abc|ABC)' grep.sh abc ABC