]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/vredir1.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / vredir1.sub
CommitLineData
495aee44
CR
1bar()
2{
3exec {v}<<EOF
4line 1
5line 2
6line 3
7EOF
8echo $v
9}
10
11bar
12
13cat <&$v
14
15type bar
16
17exit 0