i-bash/tests/vredir1.sub
2011-11-22 19:11:26 -05:00

17 lines
90 B
Text

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