remove msh_function.patch. msh is deprecated
[oweals/busybox.git] / shell / hush_test / hush-parsing / escape5.tests
1 v="a\nb\nc\n"
2 echo "$v"
3 printf "$v"
4 v='a\nb\nc\n'
5 echo "$v"
6 printf "$v"
7 echo Done