busybox/shell/hush_test/hush-quoting/bkslash_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
115 B
Plaintext
Executable File

x=a
echo Nothing:${x#[a\]]}
echo Nothing:"${x#[a\]]}"
echo Nothing:${x%[a\]]}
echo Nothing:"${x%[a\]]}"
echo Ok:$?