aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-heredoc/heredoc_var_expand1.tests
blob: 3b00bab7bd664eceb2a67bd57e3240547688e371 (plain)
1
2
3
4
5
6
7
8
9
10
11
x='*'

cat <<- EOF
	${x#'*'}
EOF
echo Ok1:$?

cat <<EOF
${x#'*'}
EOF
echo Ok2:$?