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


当前回答

使用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

其他回答

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

我采用紧凑的方式:

grep -5 string file

这相当于:

grep -A 5 -B 5 string file

Grep有一个名为Context Line Control的选项,您可以使用--Context,

| grep -C 5

or

| grep -5

应该会成功的

我通常使用

grep searchstring file -C n # n for number of lines of context up and down

许多像grep这样的工具也有很棒的man文件。我发现自己经常参考grep的手册页,因为你可以用它做很多事情。

man grep

许多GNU工具也有一个信息页,除了手册页之外,它可能还有更多有用的信息。

info grep

对于BSD或GNUgrep,可以使用-B num设置匹配前的行数,使用-A num设置匹配后的行数。

grep -B 3 -A 2 foo README.txt

如果希望前后行数相同,可以使用-C num。

grep -C 3 foo README.txt

这将显示前3行和后3行。