我想grep
换一个字符串,还要显示前五行和后五行以及匹配的行。我怎么能做到这一点?
14 回答
对于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
上下文行......只要 n 是 1 到 9)。
ack使用与 grep 类似的参数,并接受-C
. 但通常更适合通过代码进行搜索。
grep astring myfile -A 5 -B 5
这将为“astring”grep“myfile”,并在每次匹配之前和之后显示 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
ripgrep
如果您关心性能,请使用ripgrep
与 具有相似语法的grep
,例如
rg -C5 "pattern" .
-C
,--context NUM
- 在每场比赛前后显示 NUM 行。
还有-A
/--after-context
和-B
/等参数--before-context
。
该工具建立在Rust 的正则表达式引擎之上,这使得它在处理大数据时非常高效。
/some/file.txt
在显示前后 10 行上下文中搜索“17655” (使用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;
如果您经常搜索代码,银牌搜索器 AG比 grep 更有效(即更快)。
您可以使用该-C
选项显示上下文行。
例如:
ag -C 3 "foo" myFile
line 1
line 2
line 3
line that has "foo"
line 5
line 6
line 7
您可以在 grep 命令中使用选项-A
(after) 和-B
(before)。
尝试grep -nri -A 5 -B 5 .
这是@Ygor 中的解决方案awk
awk 'c-->0;$0~s{if(b)for(c=b+1;c>1;c--)print r[(NR-c+1)%b];print;c=a}b{r[NR%b]=$0}' b=3 a=3 s="pattern" myfile
注意:用前后的行数替换a
和变量。b
它对于不支持 grep 和参数的系统-A
特别有用-B
。-C
我以紧凑的方式做到这一点:
grep -5 string file
这相当于:
grep -A 5 -B 5 string file
Grep 有一个名为 的选项Context Line Control
,您可以--context
在其中简单地使用
| grep -C 5
或者
| grep -5
应该做的伎俩
$ grep thestring thefile -5
-5
让你5
在匹配 'thestring' 上方和下方的行等效于-C 5
or -A 5 -B 5
。