0

我知道如何使用 grep 但现在是 pcregrep。我试过:

 pcregrep -M -1 -rl '."\n' 2012 -name en*.txt

但它不起作用?

基本上,我希望它在文件夹 2012 中递归地显示名为 en_blahblahblah.txt 的所有文件中的前面一行和下面一行。但是我尝试了该命令,但它不起作用。我需要使用 pcregrep 因为 grep 不支持换行符。

4

1 回答 1

0

使用-A linesand-B lines选项。

[aman@aman test]$ pcregrep -M -B 2 -A 2 "C\nD" temp 
And failed to add the T and M;      Another called my grammar vile

C
D
                    And criticized my writing style.
Each day I scan each Subject line

从手册页

   -A number, --after-context=number
             Output  number  lines of context after each matching line.


   -B number, --before-context=number
             Output  number lines of context before each matching line.
于 2013-01-05T14:43:47.097 回答