*/5 * * * * /dev/file1/test/test1/fls/mdm/test1.sh
*/7 * * * * /dev/file1/test/test1/fls/mdm/test2.sh
I have 2 cron jobs – job1 and job2. I need to schedule the second job to run few minutes later than ongoing cron job.
Can anyone guide me how to achieve this?
>Solution :
00 05 * * * * /dev/file1/test/test1/fls/mdm/test1.sh
02 05 * * * * /dev/file1/test/test1/fls/mdm/test2.sh
I guess this should do the job as the first will run at 05 00 am and the second will run at 05 02 am.