mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
It turns out bkslash_in_varexp.tests was a bash bug :] ash and hush fail "corrected" bkslash_in_varexp.tests as well, just not as badly as I thought (hush gets half of the cases right). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
6 lines
111 B
Text
Executable file
6 lines
111 B
Text
Executable file
x=a
|
|
echo Nothing:${x#[]a]}
|
|
echo Nothing:"${x#[]a]}"
|
|
echo Nothing:${x%[]a]}
|
|
echo Nothing:"${x%[]a]}"
|
|
echo Ok:$?
|