bash – 如何在使用sed的一行之后插入换行符/换行符

前端之家收集整理的这篇文章主要介绍了bash – 如何在使用sed的一行之后插入换行符/换行符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
花了我一段时间来弄清楚如何做到这一点,所以发布,以防其他人都在寻找相同的。
为了在模式之后添加换行符,您还可以说:
sed '/pattern/{G;}' filename

报价GNU sed manual

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'
原文链接:https://www.f2er.com/bash/387986.html

猜你在找的Bash相关文章