89b342dc73e58c13a3021791e9279bc82a34c630
[platform/upstream/bash.git] / tests / misc / chld-trap.sh
1 #! /bin/sh
2 #
3 # show that setting a trap on SIGCHLD is not disastrous.
4 #
5
6 trap 'echo caught a child death' SIGCHLD
7
8 sleep 5 &
9 sleep 5 &
10 sleep 5 &
11
12 wait
13
14 exit 0