Estoy tratando de vaciar un directorio al final del día, por lo que he escrito el siguiente script:
<?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>Label</key>
<string>com.my.script.removetemp</string>
<key>ProgramArguments</key>
<array>
<string>rm</string>
<string>-fr</string>
<string>/tmp/test/*</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Minute</key>
<integer>45</integer>
<key>Hour</key>
<integer>23</integer>
</dict>
</dict>
</plist>
Lo llamé com.my.script.removetemp.plist
y lo colocó en ~/Library/LaunchAgents/
pero no funciona.
¿Qué estoy haciendo mal?