0

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?

Nik
  • 11
  • 2
  • 1
    You 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 Answers1

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