使用grep在模式匹配后检索接下来的2行文本

时间:2015-07-12 05:13:00

标签: grep full-text-search

我使用以下命令使用grep:

搜索文本
grep --include=*.{php,py} -rnw 'DIR' -F -e 'TEXT'

考虑以下文字:

This is so funny
This is pyramid
Hello World
How are you

如果我指定' funny'如何修改上面的grep命令(或者如果有其他替代方法)来获取下两行。作为匹配表达式?

grep --include=*.{php,py} -rnw 'DIR' -F -e 'funny'

1 个答案:

答案 0 :(得分:2)

您可以使用grep -A <number>获取匹配后的行数。