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