Reputation: 864
I want to make run fron every 15 minutes,it can be achieve by */15 * * * *
.
But It can be possible it runs only between 7am to 7pm at morning?
Upvotes: 2
Views: 4747
Reputation: 100
I think that */15 7-19 * * *
should work.
If you want to have it from 7pm to 7am then I think you have to add two cron jobs
*/15 0-7 * * *
*/15 17-23 * * *
Upvotes: 2
Reputation: 142
Try this.
15 7,8,9,10,11,12,13,14,15,16,17,18,19 * * * /your file path to execute
Upvotes: 1