将字符添加到以特定字符串开头的行的开头和结尾

发布于 2024-10-28 01:02:17 字数 434 浏览 1 评论 0原文

我有很多 html 文件,需要注释掉特定的 JavaScript 行:

<script src="/common/javascript/jquery/jquery.tools-1.2.4.min.js" type="text/javascript"></script>

我想通过命令行执行的操作是在目录中搜索 .htm 文件中的字符串:“/common/javascript/jquery/jquery .tools-1.2.4.min.js”并将 到行尾。

有些文件包含 type= 而有些则不包含,这就是为什么我想使用 src 值进行搜索并添加到行的开头和结尾。

感谢您的帮助。我很感激。

I have quite a few html files where I need to comment out a specific line of JavaScript:

<script src="/common/javascript/jquery/jquery.tools-1.2.4.min.js" type="text/javascript"></script>

What I would like to do via command line, is search .htm files in the directory for the string: "/common/javascript/jquery/jquery.tools-1.2.4.min.js" and add <!-- to the beginning of the respective line containing the string, and
--> to the end of the line.

Some files include type= and some do not, which is why I'd like to search using the src value and add to the beginning and end of line.

Thanks for the help. I appreciate it.

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

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-11-04 01:02:17

如果您将“整行”替换为要注释掉的整个 js 行,这将输出修改后的文件。

sed 's/\(整行\)/</' file.htm

现在只需迭代目录中的所有文件

for f in *htm;做
sed 's/\(整行\)/</' $f > $f.new
完成

我将让您弄清楚如何将它们移回到正确的文件名。 (也许是一个新目录?也许是一个 mv 命令?无论您的情况如何最好。)

This will output a modified file if you replace "that whole line" with that entire js line you want to comment out.

sed 's/\(that whole line\)/<<!--\1-->/' file.htm

Now just iterate that over all the files in the dir

for f in *htm; do
sed 's/\(that whole line\)/<<!--\1-->/' $f > $f.new
done

I'll let you figure out how to handle moving them back to the right filenames. (Maybe a new dir? Maybe a mv command? Whatever's best in your situation.)

月寒剑心 2024-11-04 01:02:17

这是你想要的吗?

for f in *.htm*; do
  mv "$f" "$f.tmp"
  sed 's#^\(.*common/javascript/jquery/jquery.tools-1.2.4.min.js.*\)#<!-- \1 -->#' "$f.tmp" > "$f"
  rm "$f.tmp" ;
done

Is this what you want?

for f in *.htm*; do
  mv "$f" "$f.tmp"
  sed 's#^\(.*common/javascript/jquery/jquery.tools-1.2.4.min.js.*\)#<!-- \1 -->#' "$f.tmp" > "$f"
  rm "$f.tmp" ;
done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文