我有一个应该运行 shell 脚本的 plist,shell 脚本已经chmod +x /path/to/myscript
运行,并且我检查了它是否正常运行。以下是我的清单:
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.system.osx</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>/Users/myuser/Library/.system/connect.sh</string>
</array>
<key>KeepAlive</key>
<true/>
<key>ResetAtClose</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>StartInterval</key>
<integer>60</integer>
<key>AbandonProcessGroup</key>
<true/>
</dict>
</plist>
plist 已加载,一个名为 LaunchControl 的用于调试启动的程序告诉我它抛出错误 127。
请帮忙!