我如何在每一条匹配的线周围显示前面和后面的5条线?


当前回答

grep astring myfile -A 5 -B 5

这将grep“myfile”表示“跨步”,并在每次比赛前后显示5行

其他回答

-A和-B将起作用,-C n(对于n行上下文)或-n(对于n个上下文……只要n是1到9)也会起作用。

ack使用与grep类似的参数,并接受-C。但它通常更适合于搜索代码。

如果您经常搜索代码,AG银搜索器比grep更高效(即更快)。

使用-C选项显示上下文行。

Eg:

ag -C 3 "foo" myFile

line 1
line 2
line 3
line that has "foo"
line 5
line 6
line 7

使用grep

$ grep --help | grep -i context
Context control:
  -B, --before-context=NUM  print NUM lines of leading context
  -A, --after-context=NUM   print NUM lines of trailing context
  -C, --context=NUM         print NUM lines of output context
  -NUM                      same as --context=NUM
$ grep thestring thefile -5

-5会让你在匹配项上下各5行,“thestring”相当于-C 5或-A 5-B 5。