<strong>grep ^vivek /etc/passwd</strong>
1 |
<strong>grep ^vivek /etc/passwd</strong> |
输出结果示例:
vivek:x:1000:1000:Vivek Gite,,,:/home/vivek:/bin/bash vivekgite:x:1001:1001::/home/vivekgite:/bin/sh
1 2 |
vivek:x:1000:1000:Vivek Gite,,,:/home/vivek:/bin/bash vivekgite:x:1001:1001::/home/vivekgite:/bin/sh |
你可以只显示以 vivek 开头的文本行。举例说就是不显示 vivekgite , vivekg 这样单词开头的。
<strong>grep -w ^vivek /etc/passwd</strong>
1 |
<strong>grep -w ^vivek /etc/passwd</strong> |
检索以 ‘foo’ 结尾的文本格式:
<strong>grep 'foo$' FILENAME</strong>
1 |
<strong>grep 'foo$' FILENAME</strong> |
你还可以用下面这样的方式搜索空白行:
<strong>grep '^$' FILENAME</strong>
1 |
<strong>grep '^$' FILENAME</strong> |
匹配 ‘Vivek’ 或 ‘vivek’ :
<strong>grep '[vV]ivek' FILENAME</strong>
1 |
<strong>grep '[vV]ivek' FILENAME</strong> |
或者可以这样:
<strong>grep '[vV][iI][Vv][Ee][kK]' FILENAME</strong>
1 |
<strong>grep '[vV][iI][Vv][Ee][kK]' FILENAME</strong> |
你可以匹配数字(例如匹配 vivek1 或 Vivek2 ):
<strong>grep -w '[vV]ivek[0-9]' FILENAME</strong>
1 |
<strong>grep -w '[vV]ivek[0-9]' FILENAME</strong> |
你可以匹配两位数(例如匹配 foo11 , foo12 ):
<strong>grep 'foo[0-9][0-9]' FILENAME</strong>
1 |
<strong>grep 'foo[0-9][0-9]' FILENAME</strong> |
不仅仅是数字,你可以匹配字母:
<strong>grep '[A-Za-z]' FILENAME</strong>
1 |
<strong>grep '[A-Za-z]' FILENAME</strong> |
显示所有包含 “w” 或 “n” 字母的文本行:
<strong>grep [wn] FILENAME</strong>
1 |
<strong>grep [wn] FILENAME</strong> |
在括号内的表达式中,在“ [: ”和“ :] ”中所附的字符类的名称:代表属于该类的所有字符的列表。标准字符类名称:
[:alnum:]– 字母数字字符。
[:alpha:]– 字母顺序
[:blank:]– 空格和制表符。
[:digit:]– 数字: ‘0 1 2 3 4 5 6 7 8 9’。
[:lower:]– 小写字母:‘a b c d e f ‘。
[:space:]– 特殊字符:制表符,换行符,垂直制表符、换页,回车,和空间。
[:upper:]– 大写字母:‘A B C D E F G H I J K L M N O P Q R S T U V W X Y Z’。
在下面这个例子中,匹配所有大写字母:
<strong>grep '[:upper:]' FILENAME</strong>
1 |
<strong>grep '[:upper:]' FILENAME</strong> |
你可以用 “.” 来代替单个字符。在下面的例子中,查询了所有以字母 “b” 开头、字母 “t” 结尾的三个字符的单词。
<strong>grep '\<b.t\>' FILENAME</strong>
1 |
<strong>grep '\<b.t\>' FILENAME</strong> |
在上面的例子中,
\< 在单词的开始位置匹配空格字符串
\> 在单词的结尾匹配空格字符串
检索并输出所有两个字母的结果:
<strong>grep '^..$' FILENAME</strong>
1 |
<strong>grep '^..$' FILENAME</strong> |
检索并显示所有以 ‘.’ 和数字开头的结果:
<strong>grep '^\.[0-9]' FILENAME</strong>
1 |
<strong>grep '^\.[0-9]' FILENAME</strong> |
转义字符’.’
下面的正则表达式查找 IP 地址 192.168.1.254 将不能获得预期的结果:
<strong>grep '192.168.1.254' /etc/hosts</strong>
1 |
<strong>grep '192.168.1.254' /etc/hosts</strong> |
其中三个点都需要被转义:
<strong>grep '192\.168\.1\.254' /etc/hosts</strong>
1 |
<strong>grep '192\.168\.1\.254' /etc/hosts</strong> |
以下示例将只匹配一个地址:
<strong>egrep '[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}' FILENAME</strong>
1 |
<strong>egrep '[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}' FILENAME</strong> |
以下将不分大小写地匹配单词 Linux 或 Unix :
<strong>egrep -i '^(linux|unix)' FILENAME</strong>
1 |
<strong>egrep -i '^(linux|unix)' FILENAME</strong> |
使用 -e 选项搜索所有匹配 ‘–test–‘ 的结果。grep 会尝试把 ‘–test–‘ 作为一个选项解析:
<strong>grep -e '--test--' FILENAME</strong>
1 |
<strong>grep -e '--test--' FILENAME</strong> |
<strong>grep -E 'word1|word2' FILENAME</strong> ### OR ### <strong>egrep 'word1|word2' FILENAME</strong>
1 2 3 |
<strong>grep -E 'word1|word2' FILENAME</strong> ### OR ### <strong>egrep 'word1|word2' FILENAME</strong> |
或者可以这样做
<strong>grep 'word1\|word2' FILENAME</strong>
1 |
<strong>grep 'word1\|word2' FILENAME</strong> |
按照下面的语法显示所有包含了单词 ‘word1’ 和 ‘word2’ 的结果:
<strong>grep 'word1' FILENAME | grep 'word2'</strong>
1 |
<strong>grep 'word1' FILENAME | grep 'word2'</strong> |
或者可以这样:
<strong>grep 'foo.*bar\|word3.*word4' FILENAME</strong>
1 |
<strong>grep 'foo.*bar\|word3.*word4' FILENAME</strong> |
你可以使用下面的语法测试一个字符在序列中的重复的次数:
{N} {N,} {min,max}
1 2 3 |
{N} {N,} {min,max} |
匹配包含两个字母 v 的字符串结果:
<strong>egrep "v{2}" FILENAME</strong>
1 |
<strong>egrep "v{2}" FILENAME</strong> |
下面的例子中将检索文件内包含 “col” 和 “cool” 的字符串结果:
<strong>egrep 'co{1,2}l' FILENAME</strong>
1 |
<strong>egrep 'co{1,2}l' FILENAME</strong> |
下面的例子中将匹配至少含有3个字母 c 的结果:
<strong>egrep 'c{3,}' FILENAME</strong>
1 |
<strong>egrep 'c{3,}' FILENAME</strong> |
下面的示例将匹配 “91-1234567890” 格式的手机号码(即 “两位数字-十位数字”)
<strong>grep "[[:digit:]]\{2\}[ -]\?[[:digit:]]\{10\}" FILENAME</strong>
1 |
<strong>grep "[[:digit:]]\{2\}[ -]\?[[:digit:]]\{10\}" FILENAME</strong> |
使用下面例子的语法:
<strong>grep --color regex FILENAME</strong>
1 |
<strong>grep --color regex FILENAME</strong> |
使用下面例子的语法:
<strong>grep -o regex FILENAME</strong>
1 |
<strong>grep -o regex FILENAME</strong> |
正则表达式 操作符 | 含义 |
. | 匹配任何单个字符。 |
? | 匹配前一个字符0次或1次。 |
* | 匹配前一个字符≥0次。 |
+ | 匹配前一个字符≥1次。 |
{N} | 匹配前一个字符N次。 |
{N,} | 匹配前一个字符≥m次。 |
{N,M} | 匹配前一个字符 N 到 M次。 |
– | 如果在列表中的某个列表或某个范围内的结束点,表示该范围。 |
^ | 开始标记,表示在开始位置匹配一个空字符串。也表示不在列表的范围内的字符。 |
$ | 结束标记。匹配一个空的字符串。 |
\b | 单词锁定符。在一个单词的边缘位置匹配空字符串。 |
\B | 在一个单词的非边缘位置匹配空字符串。 |
\< | 匹配单词开始的空字符串。 |
\> | 匹配单词结尾的空字符串。 |
原文:http://blog.51cto.com/2685141/2090642