Hi,
I think this is a pattern substitution bug with bb's bourne shell?
(afraid I cant find anything with a real shell (non-dash) to double
check on, so apologies if it is me.)
busybox 1.23.0 (sh shell)
-------------------------------------
~ # i=stuff%%this%%that
~ # j=${i//%%/$'\x0A'}
~ # echo "$j"
stuff\
this\
that
ubuntu (bash shell)
-------------------
~$ i=stuff%%this%%that
~$ j=${i//%%/$'\x0A'}
~$ echo "$j"
stuff
this
that
Cheers
Rich
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox