Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
abf755615e5f20c3bbe7534fa29c72fd684ea616
/
.
/
shell
/
hush_test
/
hush-quoting
/
bkslash_case2.tests
blob: 348ddc236f56a35a62346c6f10ff2273c8a61cfb [
file
] [
log
] [
blame
]
x
=
'\abc'
case
"$x"
in
\\
*)
echo ok1
;;
*)
echo BUG1
;;
esac
case
$x
in
\\
*)
echo ok2
;;
*)
echo BUG2
;;
esac
echo
Ok
:
$
?