mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 07:43:07 +02:00
10 lines
103 B
Bash
10 lines
103 B
Bash
echo before trap
|
|
trap 'echo caught sigint' 2
|
|
echo after trap
|
|
|
|
for i in 1 2 3
|
|
do
|
|
echo $i
|
|
sleep 5
|
|
done
|