Sign in
coral
/
busybox
/
c3295d233b6a7d924814eec9a5c5999a876daf9e
/
.
/
shell
/
ash_test
/
ash-quoting
/
squote_in_varexp2.tests
blob: 2797725cc41c720eaefc5a404d7d4e433a9af7ac [
file
] [
log
] [
blame
]
x
=
'\\\\'
printf
Nothing
:
'%s\n'
$
{
x
#'\\\\'}
printf
Nothing
:
'%s\n'
"${x#'\\\\'}"
printf
Nothing
:
'%s\n'
$
{
x
#"\\\\\\\\"}
printf
Nothing
:
'%s\n'
"${x#"
\\\\\\\\
"}"
echo
Ok
:
$
?