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

7 lines
115 B
Plaintext
Raw Normal View History

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