Guest_imported
New member
- Jan 1, 1970
- 0
Hi there..
I need some help in doing the following..
Basically, i have four subprograms A, B, C and D that i need to call like the following:
A1---------->A2-------->A3-------->A4------ etc etc
| | | |
B1 B2 B3 B4
| | | |
C1 C2 C3 C4
| | | |
D1 D2 D3 D4
the way i need it to run is such like:
run A1
if (A1 finishes){run A2, (run B1 and then C1 and then D1)};
if (A2 finishes){run A3, (run B2 and then C2 and then D2)};
if (A3 finishes){run A4, (run B3 and then C3 and then D3)};
and etc etc etc...
the sub procedures are all in perl that calls some system commands, pass variables and do some processing but do not interact with each other.. but it has to run in the above order..
Is there a way to do this? anybody
Thanks in advance
Redza
I need some help in doing the following..
Basically, i have four subprograms A, B, C and D that i need to call like the following:
A1---------->A2-------->A3-------->A4------ etc etc
| | | |
B1 B2 B3 B4
| | | |
C1 C2 C3 C4
| | | |
D1 D2 D3 D4
the way i need it to run is such like:
run A1
if (A1 finishes){run A2, (run B1 and then C1 and then D1)};
if (A2 finishes){run A3, (run B2 and then C2 and then D2)};
if (A3 finishes){run A4, (run B3 and then C3 and then D3)};
and etc etc etc...
the sub procedures are all in perl that calls some system commands, pass variables and do some processing but do not interact with each other.. but it has to run in the above order..
Is there a way to do this? anybody
Thanks in advance
Redza