busybox/shell/hush_test/hush-quoting/squote_in_varexp.tests

7 lines
76 B
Plaintext
Raw Normal View History

x=yz
echo ${x#'y'}
echo "${x#'y'}"
echo ${x%'z'}
echo "${x%'z'}"
echo Ok:$?