mirror of
https://git.busybox.net/busybox
synced 2025-05-10 12:43:48 +02:00
function old new delta encode_then_append_var_plusminus 554 552 -2 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
6 lines
64 B
Text
Executable file
6 lines
64 B
Text
Executable file
a=b
|
|
a=${a:+$a }c
|
|
echo "1:'$a'"
|
|
a=b
|
|
a="${a:+$a }c"
|
|
echo "2:'$a'"
|