I have the following two entries in my Crontab job that are set to start at 10:00am.
Job #1
0,20 10 * * 1-5 ./run_program_A
Job #2
0,20 10 * * 1-5 ./run_program_B
At 10:15, I checked my log file and only program B was run. It seemed that program A never got fired off.
If I set the start time for program A to be 10:30, it will be fired off. I am not very familiar with Crontab, so I hope you can shed some light on it. Do I have to ensure all my jobs are not set at the same time?
Thank you in advance.