-3

I searched for 15 minutes and to me the syntax still isn't clear... would this:

*/5 8,9,10,11,12,13,14,15,16,17,18,19,20 * * *  

run the job every 5 minutes from 8(8am) to 20 (8pm)?

alexus
  • 13,112
  • 32
  • 117
  • 174
Minzkraut
  • 83
  • 1
  • 9

1 Answers1

3

search no more, just type in shell man 5 crontab and read...

hint:

*/5 8-19 * * * /path/script

per @madhatter comment, you should add another job

0 20 * * * /path/script.

MadHatter
  • 79,770
  • 20
  • 184
  • 232
alexus
  • 13,112
  • 32
  • 117
  • 174