Initial public busybox upstream commit
[busybox4maemo] / shell / msh_test / msh-bugs / var_expand_in_assign.tests
1 if test $# = 0; then
2     exec "$THIS_SH" "$0" abc "d e"
3 fi
4
5 space=' '
6 echo .$space.
7
8 a=$*
9 echo .$a.
10 a=$@
11 echo .$a.
12 a="$*"
13 echo .$a.
14 a="$@"
15 echo .$a.