Estoy escribiendo mi primera lista de lanzamiento. Cuando intento cargarlo con el siguiente comando:
$ launchctl load com.Test01.plist
launchctl: no plist was returned for: com.Test01.plist nothing found to load
Se supone que el plist ejecuta un comando de shell que escribe la fecha en un archivo. El archivo plist sigue. Está en ~/Library/LaunchdAgents
.
El hardware es un MacBook Air 11 con OS X 10.8.4 Gracias por cualquier comentario.
<?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>