Files
android_external_bash/tests/comsub2.sub
2019-01-07 09:27:52 -05:00

9 lines
223 B
Plaintext

qpath='\/tmp\/foo\/bar'
echo "$qpath"
# it's crazy that all three of these produce the same result
printf "%s\n" ${qpath//\\/}
printf "%s\n" ${qpath//"`printf '%s' \\`"/}
printf "%s\n" ${qpath//`printf '%s' "\\\\\\\\"`/}