Ketan Borada
Ketan Borada

Reputation: 864

Run Cron Every 15 minutes between 7am to 7 pm

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

Answers (3)

user8034901
user8034901

Reputation:

You can use */15 7-19 * * * to run a cronjob between 7am and 7pm.

Upvotes: 5

Skipper
Skipper

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

Madhur Sharma
Madhur Sharma

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

Related Questions