i-bash/tests/comsub-posix3.sub

23 lines
143 B
Text
Raw Normal View History

# 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
)