我如何在每一条匹配的线周围显示前面和后面的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
如果您经常搜索代码,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
在/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;
$ grep thestring thefile -5
-5会让你在匹配项上下各5行,“thestring”相当于-C 5或-A 5-B 5。
我采用紧凑的方式:
grep -5 string file
这相当于:
grep -A 5 -B 5 string file
推荐文章
- 有nginx access_log和error_log日志的STDOUT和STDERR的主进程
- PowerShell等价于grep -f
- 在Python Django中运行单元测试时,如何禁用日志记录?
- 哪里是logging.config.dictConfig的完整示例?
- Log4j日志层次顺序
- 寻找不属于特定用户的文件
- 如何在MySQL中查看日志文件?
- 截断SQL Server日志文件的命令是什么?
- 在pytest测试中记录日志
- 如何在文件中grep不区分大小写的字符串?
- 如何在SQL Server Management Studio中查看查询历史
- ElasticSearch初学者指南
- Python中带有回溯的日志异常
- 如何做一个非贪婪匹配在grep?
- 使用grep删除空行