summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-heredoc/heredoc2.tests (plain)
blob: 6d9ccb6cc144bdfc85328cf1bde789dce617557d
1foo () {
2cat <<EOF && { echo "$1" ; }
3$1
4EOF
5}
6
7foo "bar"
8