aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-heredoc/heredoc_bkslash_newline1.tests
blob: 584edd0e4ee2c533aa215e2624f53c0dc486fe41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cat <\
<\
EOF
heredoc0
EOF
echo Ok0:$?

cat <<\
 EOF
heredoc1
EOF
echo Ok1:$?

cat <<\
- EOF
heredoc2
	EOF
echo Ok2:$?

cat <\
<\
- EOF
heredoc3
	EOF
echo Ok4:$?