linux – grep命令在每次匹配后添加结束行

前端之家收集整理的这篇文章主要介绍了linux – grep命令在每次匹配后添加结束行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Add blank line after every result in grep5个
你知道如何添加一些结束线吗?
"=========================================================================================="

每场比赛结束后

tail -f error.log -n 2000 | grep -B 10 -A 25 'Exception:'

此命令打印所有异常日志,但我喜欢看到每个异常日志的一个分隔符行.

解决方法

您需要以下选项:

–group-separator=SEP
Use SEP as a group separator. By default SEP is double hyphen (–).

演示:

$cat file
before
exception 1
after
foo
bar
before
exception 2
after

$grep -A 1 -B 1 --group-separator======================== exception file 
before
exception 1
after
=======================
before
exception 2
after
原文链接:https://www.f2er.com/linux/394671.html

猜你在找的Linux相关文章