svlogd: fix compat problem: svlogd -tt should timestanp stderr too
[busybox.git] / shell / hush_test / hush-vars / var_expand_in_assign.tests
blob18cdc74c0924117cf8def76b4849b72b04c0a1d6
1 if test $# = 0; then
2     exec "$THIS_SH" "$0" abc "d e"
3 fi
5 space=' '
6 echo .$space.
8 a=$*
9 echo .$a.
10 a=$@
11 echo .$a.
12 a="$*"
13 echo .$a.
14 a="$@"
15 echo .$a.