android_mt6572_jiabo/external/bash/tests/comsub-posix3.sub
2025-09-05 16:56:03 +08:00

22 lines
143 B
Text

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