I wanted to execute the cron job indefinitely for every 1 minute starting at immediate occurrence of 6:30 AM using the following pattern :
30/1 6 * * *
But cron stops at 6:59 AM and never executes thereafter.
Should I make the pattern as 30/1 6-0 * * *
. But I am afraid that the cron may not be invoked after first occurance of 12 AM.
So, will the following pattern resolve the issue?
30/1 6-* * * *