我一直在搜索并在启动站点上找到选项。有没有办法在机器唤醒时启动.plist
?如果这是不可能的,有没有办法在不安装另一个包的情况下运行 shell 脚本而只使用普通 shell?
起初它在我的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>