]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/heredoc1.sub
Bash-4.2 patch 16
[thirdparty/bash.git] / tests / heredoc1.sub
1 foo()
2 {
3 echo
4 cat <<END
5 bar
6 END
7 cat <<EOF
8 qux
9 EOF
10 }
11
12 type foo
13 foo
14
15 eval "$(type foo | sed 1d)"
16 foo