wait6.tests 157 B

123456
  1. # In bash, "wait $!" extracts correct exitcode even if bg task has already exited
  2. # It prints 0, then 3:
  3. (sleep 0; exit 3) & sleep 1
  4. echo $?
  5. wait $!
  6. echo $?