Reputation: 1752
Is it possible to construct a cron expression meaning "every minute from 9:45 until 16:30 of every day"?
Upvotes: 0
Views: 289
Reputation: 3089
Not in same cron expression but you can do something like this :
45-59 9 * * * your script
* 10-15 * * * your script
0-30 16 * * * your script
Upvotes: 1