1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/bin/sh $THIS_SH -c ' cleanup() { echo "child exits as expected" exit } trap cleanup HUP echo "child sleeps" sleep 1 echo "BAD exit from child!" ' & child=$! sleep 0.1 # let child install handler first kill -HUP $child wait echo "parent exits"