mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-26 07:13:10 +02:00
14 lines
94 B
Bash
14 lines
94 B
Bash
trap 'echo sigint' 2
|
|
|
|
sleep 5 &
|
|
sleep 5 &
|
|
sleep 5 &
|
|
|
|
echo wait 1
|
|
wait
|
|
|
|
echo wait 2
|
|
wait
|
|
|
|
exit
|