aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-signals/continue_and_trap1.tests
blob: 2a5c147b178533d667473fbdcef9b9a374dbc5a8 (plain)
1
2
3
4
5
6
7
trap "echo Exiting; exit" INT

(sleep 1; kill -s INT $$) &

while continue; do
        continue;
done