I’m working with launchd to run some automated tasks, and I was wondering what the difference is between ‘Day’ and ‘Weekday’.
According to http://discussions.apple.com/thread.jspa?threadID=1361809 there is a ‘subtle’ difference that can cause launchd to misbehave.
Ultimately, I’d like to have a plist that runs every weekday (Mon – Fri) at 8am, but I don’t know how to get the cron equivalent of
0 8 * * 1-5
Day is the day of the month.
Weekday is the day of the week (0 and 7 == Sunday).
For you, you need:
Not quite as elegant as cron…