blob: 3a0e39a8b66b29b0d7da8e258dcc75db8e524824 [file] [log] [blame]
# parsing errors before bash-4.2
a=$(/bin/cat << EOF | wc -l
a
b
c
EOF
)
a=$(cat << EOF | wc -l
a
b
c
EOF
)
a=$(/bin/cat << EOF
a
b
c
EOF
)