添加 to the bottom of a html file?

添加 to the bottom of a html file?

我有一堆 HTML 文件,我需要<script src="ga.js"></script>在每个搜索实例之前添加“ </body></html>”。

我如何将其添加到所有这些文件的底部?

答案1

如果它们实际上在同一条线上,您可以使用以下命令轻松完成sed

$ sed -i '/<\/body><\/html>/ i <script src="ga.js"></script>' *.html

查找当前目录中的所有 html 文件 ( *.html),搜索</body></html>( /.../),并i在其前面插入 ( ) 脚本标记,将更改写回同一文件 ( -i)

相关内容