Grep 并插入字符串
我有一个文本文件,其中包含一堆文件路径,例如 -
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
xargs 可用于将 sed (或任何其他命令)应用于列表中的每个文件名或参数。因此,将其与 Rom1 的答案结合起来可以得出:
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:
或者
or