I have a series of program files, a.out, b.out, c.out
I want to execute them one after another after some delay between each program. as
. /a.out-input options
---- wait 50 seconds ----
./b.out- input parameters
----- wait 100 seconds ----
. /c.out
I want to execute b.out 50 seconds after a.out started the execution, but in a non-blocking way, that is, I do not want to wait 50 seconds after a.out completes the execution.
Can anyone suggest ways to do this on linux as I put this in a script that will automate tasks for me
cathy source share