grep -v模式也删除1行之前和4行之后

时间:2014-12-22 09:15:15

标签: regex bash shell awk grep

我想grep一个模式并删除匹配模式的行,并且在上下文之后还有1行和4行之后。我试过了:

grep -v -A 4 -B 1

提前致谢!

示例:

Rule: r1
Owner: Process explorer.exe Pid 1544
0x01ec350f  8b 45 a8 0f b6 00 8d 4d a8 ff 14 85 c8 7f ed 01   .E.....M........
0x01ec351f  84 c0 75 ec 8b 4d fc e8 ba f5 fe ff f7 85 b0 fd   ..u..M..........
0x01ec352f  ff ff 00 00 01 00 75 13 33 c0 50 50 50 68 48 28   ......u.3.PPPhH(
0x01ec353f  eb 01 33 d2 8b cb e8 b0 57 ff ff f7 05 8c 9b ed   ..3.....W.......

我想grep“explorer.exe”并删除该行以及之前和之后的4行。

1 个答案:

答案 0 :(得分:5)

AWK

这个awk one-liner会有所帮助:

 awk  'NR==FNR{if(/explorer[.]exe/)d[++i]=NR;next}
      {for(x=1;x<=i;x++)if(FNR>=d[x]-1&&FNR<=d[x]+4)next}7' file file

见这个例子:

kent$  cat f
foo
foo2
Rule: r1
Owner: Process explorer.exe Pid 1544
remove1
remove2
remove3
remove4
bar
bar2

kent$  awk  'NR==FNR{if(/explorer[.]exe/)d[++i]=NR;next}{for(x=1;x<=i;x++)if(FNR>=d[x]-1&&FNR<=d[x]+4)next}7' f f 
foo
foo2
bar
bar2

VIM

如果你也可以使用vim,那可能会容易得多:

:g/Pattern/norm! k6dd

请注意,如果您的pattern位于文件的第一行,则vim解决方案在首次匹配时会出现问题。