aboutsummaryrefslogtreecommitdiffstats
path: root/tests/heredoc1.sub
blob: 3f85ead778f8d46f09e823682f7aea924d5f6907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
foo()
{
	echo
	cat <<END
bar
END
	cat <<EOF
qux
EOF
}

type foo
foo

eval "$(type foo | sed 1d)"
foo