mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
function old new delta subevalvar 1576 1588 +12 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
8 lines
198 B
Text
Executable file
8 lines
198 B
Text
Executable file
v="x/x"
|
|
# The second / is quoted, should not be treated as separator
|
|
echo a${v/'/'}b
|
|
# The second / is escaped, should not be treated as separator
|
|
echo a${v/\/}b
|
|
|
|
echo "a${v/'/'}b"
|
|
echo "a${v/\/}b"
|