1
0
Fork 0
bash/tests/lastpipe3.sub
Daniel Baumann fa1b3d3922
Adding upstream version 5.2.37.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 06:49:21 +02:00

11 lines
166 B
Text

# 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