mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
15 lines
159 B
Plaintext
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
|