mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
Bash doesn't expand its $'...' construct in double quotes: $ echo "$'a\tb'" $'a\tb' Change BusyBox ash to do the same. This also fixes a problem with here documents where BusyBox ash gave an incorrect result for: $ cat <<EOF > '$' > EOF '$' Reported-by: Timo Teras <timo.teras@iki.fi> Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
3 lines
18 B
Text
Executable file
3 lines
18 B
Text
Executable file
cat <<EOF
|
|
'$'
|
|
EOF
|