mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
6 lines
122 B
Plaintext
6 lines
122 B
Plaintext
# make sure we can wait for the last process substitution, since it sets $!
|
|
cat <(exit 123) >/dev/null
|
|
|
|
wait "$!"
|
|
echo $?
|