repo.or.cz
/
bush.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
init version.
[bush.git]
/
tests
/
3.cli
/
jobs
/
jobs6.sub
blob
9ed59ee5b6f7d40e55c62bef31feb7d1485c835d
1
# framework to test `wait -f' which forces wait until a job exits
2
set -o monitor
3
sleep 5 &
4
child1=$!
5
6
( sleep 1; kill -STOP $child1 ; sleep 1 ; kill -CONT $child1 )&
7
8
child2=$!
9
10
wait -f %1
11
echo child1 exit status $?
12
13
wait $child2
14
exit 0