How can I set a cron to run every 2 hours between 8 am and 5 pm for example? Is this possible?
Asked
Active
Viewed 1.3e+01k times
2 Answers
101
Actually, Alex's (former) solution will run every minute, every 2 hours between 8 am and 3pm. The right solution is:
0 8-17/2 * * * /path/command
Or even:
0 8,10,12,14,16 * * * /path/command
Which of course looks less nice, but still does what requested...
Scott - Слава Україні
- 22,532
DarkAjax
- 1,226