How i can configuring cron task every 10 minutes from 6:30 am to 11 pm every day This is what I came out with: */10 6-23 * * * my command. but how i can start it from 6:30?
Asked
Active
Viewed 51 times
0
-
1You can't, have to split it to at least two scripts. – Puchacz Mar 23 '17 at 13:12
-
Please, look here: It's similar question with response: [enter link description here](http://stackoverflow.com/questions/42966927/quartz-start-at-a-specific-time-and-run-at-specific-interval) – Puchacz Mar 23 '17 at 13:14
1 Answers
0
Has said, you need two scripts.
First one : */10 7-23 * * *
> every 10 minutes from 7am to 11pm
Second one : 30,40,50 6 * * *
> once at 6:30 am, 6:40am, 6:50 am

Arnaud F.
- 8,252
- 11
- 53
- 102
-
Thanks for answer, what about 6:40, 6:50? I need it ro run also at 6:40 and 6:50? – Nik Mar 23 '17 at 13:27
-
You said "every 10 minutes", so 6:30/40/50 should be run to. Doing this is done by 30,40,50 – Arnaud F. Mar 23 '17 at 13:50