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