android_mt6572_jiabo/external/bash/tests/vredir4.sub
2025-09-05 16:56:03 +08:00

22 lines
182 B
Text

swizzle()
{
fd0=0
fd1=1
exec {stdin}<&$fd0
exec {stdout}>&$fd1
}
swizzle
echo $stdin $stdout
read line <&$stdin <<EOF
a
EOF
echo $line
echo $line >&$stdout
type swizzle
exit 0