android_mt6572_jiabo/external/bash/tests/jobs5.sub
2025-09-05 16:56:03 +08:00

12 lines
152 B
Text

# framework to test new `wait -n' option that waits for any job to finish
set -m
sleep 20 &
{ sleep 5; exit 12; } &
sleep 20 &
wait -n
echo $?
jobs