前端之家收集整理的这篇文章主要介绍了
bash – 添加到包含模式的行的结尾 – 使用sed或awk,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这里是示例
文件
somestuff...
all: thing otherthing
some other stuff
我想做的是添加到以all开头的行:像这样:
somestuff...
all: thing otherthing anotherthing
some other stuff
我可能可以做这使用sed,但我不是真的好sed,所以任何人可以帮助吗?
这对我有用
sed '/^all:/ s/$/ anotherthing/' file
第一部分是找到的模式,第二部分是一个普通的sed的替换,使用$作为一行的结尾。
如果要在此过程中更改文件,请使用-i选项
sed -i '/^all:/ s/$/ anotherthing/' file
或者您可以将其重定向到另一个文件
sed '/^all:/ s/$/ anotherthing/' file > output
原文链接:https://www.f2er.com/bash/391519.html