mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
9 lines
182 B
Plaintext
9 lines
182 B
Plaintext
qpath='\/tmp\/foo\/bar'
|
|
|
|
echo "$qpath"
|
|
|
|
# it's crazy that all three of these produce the same result
|
|
echo ${qpath//\\/}
|
|
echo ${qpath//"`echo \\`"/}
|
|
echo ${qpath//`echo "\\\\\\\\"`/}
|