sed 仅在出现 1 次时追加行

发布于 2024-12-12 05:22:35 字数 346 浏览 0 评论 0原文

有了这个文件,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鸠书 2024-12-19 05:22:35

实际上,它不是 sed,但也许 awk 可以帮助你。

gt; cat ./file
ServerName *
ServerAlias *
ServerAlias *

<Directory>

gt; awk '{print} /^ServerAlias/ && !n {print "S2"; n++}' ./file
ServerName *
ServerAlias *
S2
ServerAlias *

<Directory>

UPD:错误现已修复,谢谢glenn_jackman

Actually, it's not sed, but maybe awk can help you.

gt; cat ./file
ServerName *
ServerAlias *
ServerAlias *

<Directory>

gt; awk '{print} /^ServerAlias/ && !n {print "S2"; n++}' ./file
ServerName *
ServerAlias *
S2
ServerAlias *

<Directory>

UPD: mistake is fixed now, thanks glenn_jackman

长梦不多时 2024-12-19 05:22:35

上面的 awk 解决方案是最好的,但如果您真的想在 (GNU) sed 中执行此操作,那么以下方法可以解决问题:

sed '0,/^ServerAlias.\+/s//\0\nS2/' file

信用转到 sed 常见问题解答

The awk solution above is best, but if you really want to do it in (GNU) sed then the following does the trick:

sed '0,/^ServerAlias.\+/s//\0\nS2/' file

Credit goes to the sed FAQ.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文