0

私はgrepでそれを行う方法を知っていますが、今はpcgrepです。私は試した:

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

しかし、それは動作しませんか?

基本的には、フォルダー 2012 にある en_blahblahblah.txt という名前のすべてのファイルで、1 行前と 1 行下を再帰的に表示したいのですが、そのコマンドを試してみましたが、うまくいきません。grep は改行をサポートしていないため、pcgrep を使用する必要があります。

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 に答える