summaryrefslogtreecommitdiff
path: root/shell/msh_test/msh-bugs/var_expand_in_assign.tests (plain)
blob: 18cdc74c0924117cf8def76b4849b72b04c0a1d6
1if test $# = 0; then
2 exec "$THIS_SH" "$0" abc "d e"
3fi
4
5space=' '
6echo .$space.
7
8a=$*
9echo .$a.
10a=$@
11echo .$a.
12a="$*"
13echo .$a.
14a="$@"
15echo .$a.
16