Files
bash/tests/heredoc1.sub
2011-12-07 09:37:36 -05:00

17 lines
101 B
Plaintext

foo()
{
echo
cat <<END
bar
END
cat <<EOF
qux
EOF
}
type foo
foo
eval "$(type foo | sed 1d)"
foo