]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/comsub-posix3.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / comsub-posix3.sub
1 # parsing errors before bash-4.2
2
3 a=$(/bin/cat << EOF | wc -l
4 a
5 b
6 c
7 EOF
8 )
9
10 a=$(cat << EOF | wc -l
11 a
12 b
13 c
14 EOF
15 )
16
17 a=$(/bin/cat << EOF
18 a
19 b
20 c
21 EOF
22 )