Sto scrivendo il mio primo plist di lancio. Quando provo a caricarlo con il seguente comando:
$ launchctl load com.Test01.plist
launchctl: no plist was returned for: com.Test01.plist nothing found to load
Il plist dovrebbe eseguire un comando shell che scrive la data in un file. Segue il file plist. È in ~/Library/LaunchdAgents
.
L'hardware è un MacBook Air 11 con OS X 10.8.4 Grazie per eventuali commenti.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Aple//DTD PLIST 1.0//EN">
<plist version="1.0">
<dict>
<key>label</key>
<string>com.Test01</string>
<key>ProgramArguments</key>
<array>
<string>/Users/cae/scripts/testcron.sh</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>Nice</key>
<integer>1</integer>
<key>StartInterval</key>
<integer>60</integer>
<key>StandardErrorPath</key>
<string>/Users/cae/tmp/Test01.err</string>
<key>StandardOutPath</key>
<string>/Users/cae/tmp/Test01.out</string>
</dict>
</plist>