Sign in
coral
/
busybox
/
1c462d47a0bc92f9f57af223456df53169acf3fe
/
.
/
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
:
$
?