I'm using a korn shell. Is this a possible scenario using wait? Where I have (2) instances of it?
#!/usr/bin/ksh
a &
wait
b &
c &
wait
d
My goal is to run a first, once complete, then fire off b,c at the same time. Once b,c is complete, then run "d".