sed 仅在出现 1 次时追加行
有了这个文件,
ServerName *
ServerAlias *
ServerAlias *
<Directory>
我想在第一次出现 ServerAlias 后添加一个新行,其中包含文本 S2。 我已经尝试过以下操作,
sed '/ServerAlias/ a\S2\' foo
但这会在所有事件发生后附加。
我的最终结果应该是
ServerName *
ServerAlias *
S2
ServerAlias *
<Directory>
Have this file
ServerName *
ServerAlias *
ServerAlias *
<Directory>
I want to append a new line after the first occurrence of ServerAlias with the text S2.
I have tried the following
sed '/ServerAlias/ a\S2\' foo
But this appends after all the occurrences.
My final result should be
ServerName *
ServerAlias *
S2
ServerAlias *
<Directory>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,它不是 sed,但也许 awk 可以帮助你。
UPD:错误现已修复,谢谢glenn_jackman
Actually, it's not sed, but maybe awk can help you.
UPD: mistake is fixed now, thanks glenn_jackman
上面的 awk 解决方案是最好的,但如果您真的想在 (GNU) sed 中执行此操作,那么以下方法可以解决问题:
信用转到 sed 常见问题解答。
The awk solution above is best, but if you really want to do it in (GNU) sed then the following does the trick:
Credit goes to the sed FAQ.