aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-heredoc/heredoc_empty2.tests
blob: 20fc35fe92e586da564c6447294b46f597bbb3e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
unset a

# Heredoc with empty delimiter
cat <<- ""
	OK1

echo Ok:$?

# Heredoc with empty delimiter
cat <<- ""
	OK2
	

echo Ok:$?