Grep 并插入字符串

发布于 2024-11-01 01:01:56 字数 246 浏览 0 评论 0原文

我有一个文本文件,其中包含一堆文件路径,例如 -

web/index.erb

web/contact.erb

...

等。我需要在

</head>

每一个文件的一行代码之前附加,我试图弄清楚如何在不打开每个文件的情况下执行此操作。我听说过 sed,但我以前从未使用过它..希望可能有一个 grep 命令?

谢谢

I have a text file with a bunch of file paths such as -

web/index.erb

web/contact.erb

...

etc. I need to append before the

</head>

a line of code, to every single file, I'm trying to figure out how to do this without opening each file of course. I've heard sed, but I've never used it before..was hoping there would be a grep command maybe?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

素年丶 2024-11-08 01:01:56

xargs 可用于将 sed (或任何其他命令)应用于列表中的每个文件名或参数。因此,将其与 Rom1 的答案结合起来可以得出:

xargs sed -i 's/<\/html>/myline\n<\/html>/g' < fileslist.txt

xargs can be used to apply sed (or any other command) to each filename or argument in a list. So combining that with Rom1's answer gives:

xargs sed -i 's/<\/html>/myline\n<\/html>/g' < fileslist.txt
↘人皮目录ツ 2024-11-08 01:01:56
while read f ; do
    sed -i '/<\/head>/i*iamthelineofcode*' "$f"
done <iamthefileoffiles.list

或者

sed -i '/<\/head>/i*iamthelineofcode*' $(cat iamthefileoffiles.list)
while read f ; do
    sed -i '/<\/head>/i*iamthelineofcode*' "$f"
done <iamthefileoffiles.list

or

sed -i '/<\/head>/i*iamthelineofcode*' $(cat iamthefileoffiles.list)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文