summaryrefslogtreecommitdiffstats
path: root/tests/lastpipe3.sub
blob: b9222b8acae91df7d900a8da6f2921ed75563fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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