we arent testing `echo -n` here so use printf instead
[oweals/busybox.git] / shell / hush_test / hush-parsing / escape3.tests
1 v='a \ b \\ c \\\ d \\\\ e'
2 echo v: $v
3 echo v: "$v"
4 echo Unquoted:
5 for a in $v; do echo .$a.; done
6 echo Quoted:
7 for a in $v; do echo ".$a."; done
8 echo done