如何充分利用记事本中的宏?

发布于 2024-12-29 20:13:35 字数 204 浏览 2 评论 0原文

我真正想要的是类似于 Photoshop 的自动化功能,您可以对其进行设置,以便它打开文件,执行宏,然后保存文件。

我希望这可以在 Notepad++ 中完成,但是 Dreamweaver 或任何其他 IDE 是否有类似的功能?

我有几百个 HTML 文件,我想对它们进行相当重复的修改,并且确实认为有比手动修改更简单的方法。

非常感谢任何帮助!

What I really want is something similar to Photoshop's automation feature, where you can set it up so it will open a file, preform a macro, and then save the file.

I would prefer if this could be done in Notepad++, but does Dreamweaver or any other IDE have something similar?

I have a couple hundred HTML files that I want to make fairly repetitive modifications to, and really think there is an easier way than doing it manually.

Any help greatly appreciated!

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

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

发布评论

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

评论(1

依 靠 2025-01-05 20:13:35

如果您愿意安装 Cygwin 工具,则安装 sedawk 工具可能正好适合这种重复编辑。我使用 sed 为尚未具有显式许可证的文件添加许可证、重命名变量等。不过,这些工具的掌握并不多——您编写的内容很少小型 sedawk 程序来完成这项工作:

sed -i 's/foo/bar/g' *  # replace 'foo' with 'bar' in all files in current dir

If you're open to installing the Cygwin tools then the sed or awk tools might be appropriate for exactly this kind of repetitive editing. I've used sed to prepend a license to files that didn't already have an explicit license, rename variables, etc. There isn't much hand-holding with these tools though -- you write little tiny sed or awk programs to do the job:

sed -i 's/foo/bar/g' *  # replace 'foo' with 'bar' in all files in current dir
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文