LaunchAgent plistをロードしようとするlaunchctl
と、ホームディレクトリでスクリプトを実行する方法がわかりません。
私のコードは:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ProgramArguments</key>
<array>
<string>bash</string>
<string>~/script.sh</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>Label</key>
<string>com.tyilo.test</string>
</dict>
</plist>
私はbashを使用した場合と使用しない場合の両方を試してみまし~
た$HOME
。また、私はbash -c
それが動作せずに使用してみました。
エラーコードは次のとおりです。
`com.tyilo.test: bash: ~/script.sh: No such file or directory`