]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/misc/sigint-4.sh
Imported from ../bash-2.01.1.tar.gz.
[thirdparty/bash.git] / tests / misc / sigint-4.sh
1 trap 'echo sigint' 2
2
3 sleep 5 &
4 sleep 5 &
5 sleep 5 &
6
7 echo wait 1
8 wait
9
10 echo wait 2
11 wait
12
13 exit