Imported from ../bash-4.0.tar.gz.

This commit is contained in:
Jari Aalto 2009-02-19 22:21:29 +00:00
commit 17345e5ad2
134 changed files with 74214 additions and 4584 deletions

16
tests/heredoc1.sub Normal file
View file

@ -0,0 +1,16 @@
foo()
{
echo
cat <<END
bar
END
cat <<EOF
qux
EOF
}
type foo
foo
eval "$(type foo | sed 1d)"
foo