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

11 lines
136 B
Plaintext
Executable File

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:$?