花了我一段时间来弄清楚如何做到这一点,所以发布,以防其他人都在寻找相同的。
为了在模式之后添加换行符,您还可以说:
原文链接:https://www.f2er.com/bash/387986.htmlsed '/pattern/{G;}' filename
G Append a newline to the contents of the pattern space,and then append the contents of the hold space to that of the pattern space.
编辑:
顺便说一下,这恰好在sed one liners:
# insert a blank line below every line which matches "regex" sed '/regex/G'