使用 Perl 将书签添加到 Safari?
有没有办法使用 Perl 以编程方式向 Safari 添加书签?
我更喜欢即使 Safari 正在运行也能工作的解决方案,但当然(如果没有其他方法)我也会选择需要先关闭应用程序的解决方案。如果有帮助的话,我正在 OS X 中运行。
Is there a way to programmatically add bookmarks to Safari using Perl?
I would prefer a solution that works even if Safari is running, but of course—if there is no other way—I would also settle for a solution that requires closing the application first. If it helps, I'm running in OS X.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以防万一其他人正在寻找解决方案。我最终成功地通过直接编辑 Safari 的书签文件(位于
~/Libary/Safari/Bookmarks.plist
中)来做到这一点。为了使用 perl 读取、修改和更新plist
,我使用了 OSX Foundation 模块 (这篇文章可能会有所帮助)。Just in case someone else is looking for a solution. I've eventually managed to do this by directly editing Safari's bookmarks file (Located in something like
~/Libary/Safari/Bookmarks.plist
). In order to read, modify and update theplist
using perl I went for the OSX Foundation module (this article might be helpful).