busybox/shell/hush_test/hush-quoting/squote_in_varexp.tests
Denys Vlasenko 744a20d8f9 shell: two new tests, both fail for ash and hush
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2018-03-02 17:13:22 +01:00

7 lines
76 B
Plaintext
Executable File

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