我一直在搜索launchd网站上的选项。有没有办法在机器唤醒时启动.plist
?如果这是不可能的,有没有办法运行shell脚本而不安装另一个包,只使用普通的shell?
答案 0 :(得分:0)
起初它并没有在我的OSX Sierra mac上运行。重新启动机器后,plist配置现在似乎正常工作。
<key>RunAtLoad</key>
<true/>
此键确保您的plist
在唤醒时运行,如果您想指定它将运行哪个脚本,您可以通过
<dict>
<key>PathState</key>
<dict>
<key>/path/to/your/shell/script.sh</key>
<true/>
</dict>
</dict>