I'm having trouble running a cron job at particular times during the day.
Will this crontab setting run the command at 3am, 6am, noon, 6pm, and 9pm?
0 3,6,12,18,21 * * * command
I'm having trouble running a cron job at particular times during the day.
Will this crontab setting run the command at 3am, 6am, noon, 6pm, and 9pm?
0 3,6,12,18,21 * * * command
If that is in a user crontab (edited with crontab -e
or crontab -e -u username
), then yes.
If that is in the system crontab (/etc/crontab
), it needs a username, i.e.
0 3,6,12,18,21 * * * run-as-this-username command
Your cron specification is correct. If it doesn't appear to be running, it may be a PATH problem (i.e., your script references something in /usr/local/bin). If that's the case, you can stick something like
PATH=/usr/local/bin:/usr/bin:/bin
etc., at the top of your crontab to set the PATH for the cron jobs. (You can do something like "echo $PATH" at the command line to see the current PATH).