* grep命令基础
grep命令在文件中全局查找指定的正则表达式,并且打印所有包含这个表达式的行。
=命令格式:=
: grep [option] 'pattern' filenames
其中引号包括起来的pattern指的是正则表达式匹配的模式,filenames则是一个
或者多个文件名。
** option
下面列出了grep常用的几个选项。
- |----+------------------------|
- | -c | 显示匹配到的行数 |
- |----+------------------------|
- | -i | 比较时忽略大小字 |
- |----+------------------------|
- | -l | 只列出所在文件的文件名 |
- |----+------------------------|
- | -v | 显示不匹配的行 |
- |----+------------------------|
** pattern
关于匹配的模式,其实就是一系列的元字符加上普通字符组成的一个字符串,使
用该字符串可以表达更多更准确的含义。下面是grep命令支持的正则表达式元字
符。
- |----------+----------------------------------|
- | ^ | 行首定位符 |
- |----------+----------------------------------|
- | $ | 行为定位符 |
- |----------+----------------------------------|
- | \< | 词首定位符 |
- |----------+----------------------------------|
- | \> | 词尾定位符 |
- |----------+----------------------------------|
- | . | 匹配一个字符 |
- |----------+----------------------------------|
- | * | 匹配零个以上字符 |
- |----------+----------------------------------|
- | [] | 匹配一组字符中的任何一个 |
- |----------+----------------------------------|
- | [^] | 不匹配一组字符中的任何一个 |
- |----------+----------------------------------|
- | \(\) | 标记匹配的字符 |
- |----------+----------------------------------|
- | x\{m\} | 字符出现m次 |
- |----------+----------------------------------|
- | x\{m,\} | 字符至少出现m次 |
- |----------+----------------------------------|
- | x\{m,n\} | 字符至少出现m次,但是不能超所n次 |
- |----------+----------------------------------|
** filenames
grep命令可以对一个到多个文件进行查找。
* 实例解析
首先我们先生生成一个文件,以便于后面的测试。
- : man man | head -48 | tail -10 > test
- : cat test
生成结果如下:
- ~$ cat test
- 2 System calls (functions provided by the kernel)
- 3 Library calls (functions within program libraries)
- 4 Special files (usually found in /dev)
- 5 File formats and conventions eg /etc/passwd
- 6 Games
- 7 Miscellaneous (including macro packages and conventions), e.g.
- man(7), groff(7)
- 8 System administration commands (usually only for root)
- 9 Kernel routines [Non standard]
** 打印以XX结尾的行
- ~$ grep 'passwd' test
- 5 File formats and conventions eg /etc/passwd
- # 打印以passwd结尾的行
** 打印以XX开头的行
- ~$ grep '^ ' test
- 2 System calls (functions provided by the kernel)
- 3 Library calls (functions within program libraries)
- 4 Special files (usually found in /dev)
- 5 File formats and conventions eg /etc/passwd
- 6 Games
- 7 Miscellaneous (including macro packages and conventions), e.g.
- man(7), groff(7)
- 8 System administration commands (usually only for root)
- 9 Kernel routines [Non standard]
- # 打印以空格开始的行
** 打印包含单词XX的行
- ~$ grep '\' test
- 2 System calls (functions provided by the kernel)
- 3 Library calls (functions within program libraries)
- # 打印包含单词calls的行
** 打印出现特定个数字符的行
- ~$ grep 'l\{2,5\}' test
- 2 System calls (functions provided by the kernel)
- 3 Library calls (functions within program libraries)
- 4 Special files (usually found in /dev)
- 7 Miscellaneous (including macro packages and conventions), e.g.
- 8 System administration commands (usually only for root)
- # 打印出现l在2到5个的行。
grep命令主要用于对特定文本进行分析,查找到相关的行。在文本过滤上,sed和
awk比grep更精准,后面会一一介绍它们的使用方法。
* grep命令回顾
** 打印包含Tom这个词的行
- : grep '\' file
- : grep '\bTom\b' file
- : grep -w 'Tom' file # 某些grep版本不支持
** 打印包含Tom Sam的行
: grep 'Tom Sam' file
** 打印以Tom开头的行
: grep '^Tom' file
** 打印以Tom结尾的行
: grep 'Tom$' file
** 打印至少包含一个大写字母/小写字母/数字的行
: grep '[A-Z]' file
: grep '[a-z]' file
: grep '[0-9]' file
** 取消大小写敏感
: grep -i 'sam' file # 这会打印所有包含Sam SAM sAM等所有变形的行
** 打印匹配的行号
: grep -n 'Tom Sam' file
** 打印以一个或者多个空格开头的行(Egrep)
: egrep '^ *' file # 零个以上的空格
: grep -E '^ +' file # 一个以上的空格
** 打印like或者hate的行
: grep 'like|hate' file
阅读(3536) | 评论(0) | 转发(0) |