mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
# problem in bash-5.1 running lastpipe in subshell if fd 0 is closed
|
|
|
|
shopt -s lastpipe
|
|
exec 0<&-
|
|
|
|
echo x | read x
|
|
echo x=$x
|
|
unset x
|
|
|
|
echo x | cat | read x
|
|
echo x=$x
|