busybox/shell/ash_test/ash-quoting/squote_in_varexp.tests

11 lines
136 B
Plaintext
Raw Normal View History

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