i-bash/tests/vredir1.sub

18 lines
90 B
Text
Raw Normal View History

bar()
{
exec {v}<<EOF
line 1
line 2
line 3
EOF
echo $v
}
bar
cat <&$v
type bar
exit 0