summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-trap/signal_read1.tests (plain)
blob: 1105479a3eba0f3fc0edc0063219512e68c1360a
1(sleep 1; kill -HUP $$) &
2trap 'echo "Got HUP:$?"; exit' HUP
3while true; do
4 read ignored
5done
6