aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/wait6.tests
blob: c237131993ab52835f27ec76a87a4875fe9d1235 (plain)
1
2
3
4
5
6
# In bash, "wait $!" extracts correct exitcode even if bg task has already exited
# It prints 0, then 3:
(sleep 0; exit 3) & sleep 1
echo $?
wait $!
echo $?