Mac OS X 默认有 Perl 接口吗?
Mac OS X 有一个名为 defaults 的应用程序 它允许设置和检索应用程序配置变量。
是否有 Perl 模块允许我读取/写入这些配置变量而无需使用 qx//
?
Mac OS X has an application called defaults which allows one to set and retrieve application configuration variables.
Is there a Perl module which allows me to read/write these configuration variables without having to use qx//
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有
Mac::PropertyList
和Mac::Tie::Plist
模块,但都不支持写作。现在坚持使用默认值
。There are
Mac::PropertyList
andMac::Tie::Plist
modules, but neither supports writing. Stick withdefaults
for now.