72

How can I set a cron to run every 2 hours between 8 am and 5 pm for example? Is this possible?

luqita
  • 841

2 Answers2

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...

DarkAjax
  • 1,226
10
0 8-17/2 * * * your_command.sh
Alex
  • 332