grep 搜索文本文件中与指定正则表达式匹配的行

命令格式

grep [OPTIONS] PATTERN [FILE...]

命令参数

Generic Program Information

--help
  打印帮助信息

-V, --version
  打印版本信息

Matcher Selection

-E, --extended-regexp
  使用基本正则表达式(ERE)解释 PATTERN

-F, --fixed-strings
  每个模式作为一组固定字符串对待(以新行分隔),而不作为正则表达式。

-G, --basic-regexp
  使用基本正则表达式(BRE)解释 PATTERN

-P, --perl-regexp
  使用 Perl 正则表达式(PCRE)解释 PATTERN

Matching Control

-e PATTERN, --regexp=PATTERN
  使用 PATTERN 作为匹配模式

-f FILE, --file=FILE
  从文件获取匹配模式

-i, --ignore-case
  忽略大小写

-v, --invert-match
  输出不含匹配项的行

-w, --word-regexp
  单词精确匹配

-x, --line-regexp
  行精确匹配

General Output Control

-c, --count
  输出匹配项的数目

-l, --files-with-matches
  输出包含匹配项的文件名而不是直接输出匹配行

-L, --files-without-match
  与 -l 选项类似,输出的是包含不匹配项的文件名

-m NUM, --max-count=NUM
  当匹配 NUM 后停止读取文件

-o, --only-matching
  只显示匹配项而不是匹配行

-q, --quiet, --silent
  安静模式,不显示任何信息

-s, --no-messages
  当文件不存在或不可读时,不显示错误信息

Output Line Prefix Control

-b, --byte-offset
  在每个匹配行前加上该行在文件内的块号

-H, --with-filename
  在每个匹配行前加上文件名

-h, --no-filename
  多文件搜索时,抑制文件名输出

-n, --line-number
  在每个匹配行前加上该行在文件内的行号

Context Line Control

-A NUM, --after-context=NUM
  输出匹配行及其后 NUM 行的内容

-B NUM, --before-context=NUM
  输出匹配行及其前 NUM 行的内容

-C NUM, -NUM, --context=NUM
  输出匹配行及其前后 NUM 行的内容

实例

测试文件 test.txt:

The Zen of Python, by Tim Peters

Beautiful is better than ugly
Explicit is better than implicit
Simple is better than complex
Complex is better than complicated
Flat is better than nested
Sparse is better than dense
Readability counts
Special cases aren't special enough to break the rules
Although practicality beats purity
Errors should never pass silently
Unless explicitly silenced
In the face of ambiguity, refuse the temptation to guess
There should be one-- and preferably only one --obvious way to do it
Although that way may not be obvious at first unless you're Dutch
Now is better than never
Although never is often better than *right* now
If the implementation is hard to explain, it's a bad idea
If the implementation is easy to explain, it may be a good idea
Namespaces are one honking great idea -- let's do more of those

a) 输出含有 "com" 的行

huey@huey-K42JE:~/huey/linux/cmdline$ grep com test.txt
Simple is better than complex
Complex is better than complicated

b) 匹配时忽略大小写

huey@huey-K42JE:~/huey/linux/cmdline$ grep -i com test.txt
Simple is better than complex
Complex is better than complicated

c) 输出以 "complex" 开头的行,忽略大小写

huey@huey-K42JE:~/huey/linux/cmdline$ grep -i '^complex' test.txt
Complex is better than complicated

d) 输出以 "idea" 结尾的行

huey@huey-K42JE:~/huey/linux/cmdline$ grep 'idea$' test.txt
If the implementation is hard to explain, it's a bad idea
If the implementation is easy to explain, it may be a good idea

e) 匹配空行

huey@huey-K42JE:~/huey/linux/cmdline$ grep -n '^$' test.txt
:

h) 输出含有 "good" 或 "bad" 的行

huey@huey-K42JE:~/huey/linux/cmdline$ grep 'good\|bad' test.txt
If the implementation is hard to explain, it's a bad idea
If the implementation is easy to explain, it may be a good idea
huey@huey-K42JE:~/huey/linux/cmdline$ grep -E 'good|bad' test.txt
If the implementation is hard to explain, it's a bad idea
If the implementation is easy to explain, it may be a good idea

i) 精确匹配单词 it,像 implicit、purity、purity 等这样的单词中的 it 部分是不会被匹配的

huey@huey-K42JE:~/huey/linux/cmdline$ grep -w it test.txt
There should be one-- and preferably only one --obvious way to do it
If the implementation is hard to explain, it's a bad idea
If the implementation is easy to explain, it may be a good idea

j) 输出含有 "Python" 的行及其后 3 行

huey@huey-K42JE:~/huey/linux/cmdline$ grep -A 3 Python test.txt
The Zen of Python, by Tim Peters Beautiful is better than ugly
Explicit is better than implicit

相关命令

egrep - 相当于 grep -E

fgrep - 相当于 grep -F

pgrep - 相当于 grep -P

Linux 命令 - grep: 正则搜索文本的更多相关文章

  1. linux 命令grep

    linux 命令grep grep命令用来搜索文本,或从给定的文件中搜索行内包含了给定字符串或单词的文件.通常来说,grep显示匹配的行.使用grep来搜索包括一个或多个正则表达式匹配到的文本行,然后 ...

  2. Linux 命令行下搜索工具大盘点,效率提高不止一倍!

    在 Linux 命令行下进行文本关键字的搜索,大家肯定第一时间会想到 grep 命令.grep 命令确实十分强大,但如果需要用到它更加灵活的功能时,可能命令就会显得十分复杂. 于是,为了简化 grep ...

  3. 【linux】linux命令grep + awk 详解

    linux命令grep  +  awk 详解 grep:https://www.cnblogs.com/flyor/p/6411140.html awk:https://www.cnblogs.com ...

  4. 500 多个 Linux 命令文档搜索

    500 多个 Linux 命令文档搜索 搜索界面:https://wangchujiang.com/linux-command/ 源码:https://github.com/jaywcjlove/li ...

  5. Linux 命令——grep | 正则表达式

    感觉讲的很详细,瞬间懂了grep,正则. from: here 简介 grep (global search regular expression(RE) and print out the line ...

  6. 菜鸟学Linux命令:grep配合ls等使用

    linux grep命令 (global search regular expression(RE) and print out the line )是一种强大的文本搜索工具,它能使用正则表达式搜索文 ...

  7. (转)Linux命令grep

    场景:grep命令在文件搜索中经常会使用到,所以熟练掌握该命令对于日常日志搜索相当有必要! Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来.g ...

  8. [ Linux 命令 ] grep

    一.grep是什么? Linux grep命令是用于查找文件里符合条件行的shell命令. 二.为什么要使用grep? 在查找文件内容时候,通过使用grep指定条件,可以快速定位到文件里字符串所在的行 ...

  9. Linux命令-grep

    grep命令用于对文本进行搜索,格式为“grep [选项] [文件]” 搜索某个关键词:"grep 关键词 文本文件" 参数说明 -b 将可执行文件当做文本文件来搜索 -c 仅显示 ...

随机推荐

  1. OpenCDN2.0安装

    部署说明 为网站加速,建立私有的CDN节点群,每部署一个CDN节点只需5分钟,无节点数量上限!参考 http://ocdn.me/ 安装需求 OpenCDN的Beta版目前在CentOS5.x - C ...

  2. Line去年营收超5亿美元 远超竞争对手WhatsApp

    原文地址: http://news.cnblogs.com/n/206072/ 凭借着修改表情取悦国际用户的做法,日本移动消息应用 Line 在全球的用户总数已经超过 4 亿.Line.微信.What ...

  3. getDefinitionByName与ApplicationDomain.getDefinition

    主swf 定义:MC,被加载swf 定义:MC.MC1 ①父SWF的应用程序域的新建子域 (默认方式)称其为应用程序域的继承 var app:ApplicationDomain=new Applica ...

  4. stack对象与heap对象

    从高地址到低地址,分别是stack,heap,static object,stack地址往下增长,heap地址往上增长.只要记住:stack栈顶地址反而小,就知道往下增长了. 禁止产生堆对象 1.产生 ...

  5. Codeforces Gym 100610 Problem E. Explicit Formula 水题

    Problem E. Explicit Formula Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/10 ...

  6. PhotoShop中画圆角矩形最简单方法(图文并茂)!

    PhotoShop中画圆角矩形最简单方法(图文并茂)! 1. watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvZHhubjUyMA==/font/5a6L5L ...

  7. 前端框架Bootstrap

    前端框架Bootstrap http://www.bootcss.com/ Bootstrap 编码规范 http://codeguide.bootcss.com/

  8. C++第11周(春)项目2 - 职员有薪水了

    课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目2 - 职员有薪水了]定义一个名为CPe ...

  9. 高级I/O之STREAMS

    http://en.wikipedia.org/wiki/STREAMS STREAMS(流)是系统V提供的构造内核设备驱动程序和网络协议包的一种通用方法,对STREAMS进行讨论的目的是为了理解系统 ...

  10. Helpers\RainCaptcha

    Helpers\RainCaptcha This class can validate CAPTCHA images with RainCaptcha. It can generate an URL ...