init version.
[bush.git] / tests / 3.cli / jobs / jobs6.sub
blob9ed59ee5b6f7d40e55c62bef31feb7d1485c835d
1 # framework to test `wait -f' which forces wait until a job exits
2 set -o monitor
3 sleep 5 &
4 child1=$!
6 ( sleep 1; kill -STOP $child1 ; sleep 1 ; kill -CONT $child1 )&
8 child2=$!
10 wait -f %1
11 echo child1 exit status $?
13 wait $child2
14 exit 0