xref
: /
busybox-1.35.0
/
shell
/
ash_test
/
ash-heredoc
/
heredoc_var_expand1.tests
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
x='*'
2
3
cat <<- EOF
4
${x#'*'}
5
EOF
6
echo Ok1:$?
7
8
cat <<EOF
9
${x#'*'}
10
EOF
11
echo Ok2:$?
12