Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run a cron job every minute only between 10 am to 5 pm

Tags:

cron

How do you run a cron job every minute only between office hours(10 am to 5pm)

I checked this thread Run a cron job every minute only on specific hours? but it doesn't answer my questions.

like image 898
Parag Avatar asked Sep 04 '25 04:09

Parag


1 Answers

This should be correct:

* 10-16 * * 1-5 /path/to/my-script

So every single minute, between and including 10am and 5pm, every day in every month that is a day between and including monday to friday. Obviously "office hours" is a fuzzy expression, many people have other schedules ;-)

Unfortunately I fail to see an easy solution to get the script executed also exactly on 5pm...

like image 75
arkascha Avatar answered Sep 08 '25 02:09

arkascha



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!