Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
21b7f1b6b67f191ca187910a5fd4cd2cb1eb5353
/
.
/
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
:
$
?