I have a task to run cron job in 5min for two times than in 10min...
This sequence should be continued... like. 5,5,10,5,5,10,5,5,10.....
How can we achieve this?
Thanks
Since a {5, 5, 10}
gap cycle is 20 minutes (an nice integral factor of 60 minutes), I'd just opt for a crontab entry of:
0,5,10,20,25,30,40,45,50 * * * * * commandToExecute