mirror of
https://github.com/sheumann/hush.git
synced 2024-11-18 17:10:36 +00:00
6 lines
95 B
Plaintext
6 lines
95 B
Plaintext
|
(sleep 1; kill -HUP $$) &
|
||
|
trap 'echo "Got HUP:$?"; exit' HUP
|
||
|
while true; do
|
||
|
read ignored
|
||
|
done
|