Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cron - schedule job every 30 minutes, starts half past full hour

Tags:

cron

schedule

Can I schedule job in cron format so that it runs every 30 minutes from 6:30 am to 11:30, every day? How?

like image 432
Przecinek Avatar asked Sep 21 '25 06:09

Przecinek


1 Answers

I think you will need 2 lines to achieve what you need:

30 6-11 * * * /path/to/your/command
0 7-11 * * * /path/to/your/command
like image 120
Alvin Avatar answered Sep 24 '25 12:09

Alvin