nt9856x/BSP/busybox/shell/ash_test/ash-heredoc/heredoc_var_expand1.tests
2023-03-28 15:07:53 +08:00

12 lines
81 B
Plaintext
Executable File

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