我想要grep
一个字符串,但也显示前面的五行和以下五行以及匹配的行.我怎么能这样做?
对于BSD或GNU, grep
您可以使用它-B num
来设置匹配前的-A num
行数和匹配后的行数.
grep -B 3 -A 2 foo README.txt
如果你想要使用之前和之后需要相同数量的行-C num
.
grep -C 3 foo README.txt
这将显示之前的3行和之后的3行.
-A
并且-B
将-C n
(对于n
上下文行)或仅-n
(对于n
上下文行)起作用.
ack使用与grep类似的参数,并接受-C
.但搜索代码通常更好.
grep astring myfile -A 5 -B 5
这将为"astring"grep"myfile",并在每次匹配之前和之后显示5行
我通常使用
grep searchstring file -C n # n for number of lines of context up and down
很多像grep这样的工具也有很棒的man文件.我发现自己经常提到grep的手册页,因为你可以用它做很多事情.
man grep
许多GNU工具还有一个信息页面,除了手册页之外,它还可能包含更多有用的信息.
info grep
使用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
在"/some/file.txt"中搜索"17655",显示前后10个行上下文(使用Awk),输出前面有行号后跟冒号.当'grep'不支持" - [ACB]"选项时,在Solaris上使用它.
awk ' /17655/ { for (i = (b + 1) % 10; i != b; i = (i + 1) % 10) { print before[i] } print (NR ":" ($0)) a = 10 } a-- > 0 { print (NR ":" ($0)) } { before[b] = (NR ":" ($0)) b = (b + 1) % 10 }' /some/file.txt;
ripgrep
如果您关心性能,请使用ripgrep
与相似的语法grep
,例如
rg -C5 "pattern" .
-C
,--context NUM
-在每次比赛之前和之后显示NUM行。
还有一些参数,例如-A
/ --after-context
和-B
/ --before-context
。
该工具建立在Rust的正则表达式引擎之上,这使其在大数据上非常高效。