aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var_expand_in_assign.tests
blob: 18cdc74c0924117cf8def76b4849b72b04c0a1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if test $# = 0; then
    exec "$THIS_SH" "$0" abc "d e"
fi

space=' '
echo .$space.

a=$*
echo .$a.
a=$@
echo .$a.
a="$*"
echo .$a.
a="$@"
echo .$a.