i-bash/tests/misc/chld-trap.sh

15 lines
159 B
Bash
Raw Normal View History

1996-08-26 18:22:31 +00:00
#! /bin/sh
#
# show that setting a trap on SIGCHLD is not disastrous.
#
trap 'echo caught a child death' SIGCHLD
sleep 5 &
sleep 5 &
sleep 5 &
wait
exit 0