busybox/shell/hush_test/hush-heredoc/heredoc_var_expand1.tests

12 lines
81 B
Plaintext
Executable File

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