Ben Shoval
Ben Shoval

Reputation: 1752

Cron expression for every minute from 9:45 until 16:30

Is it possible to construct a cron expression meaning "every minute from 9:45 until 16:30 of every day"?

Upvotes: 0

Views: 289

Answers (1)

Rahul Verma
Rahul Verma

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

Related Questions