Files
bash/tests/trap8.sub
T
2025-07-03 16:15:36 -04:00

15 lines
159 B
Plaintext

# tests for traps on SIGCHLD and async commands
set -m
trap 'echo CHLD' SIGCHLD
{ echo before ; : ; echo after; } &
wait
sleep 1 &
sleep 1 &
sleep 1
wait