aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/param_glob.tests
blob: 801d58ee75c045776cfe60e00a9474d28a9e9c00 (plain)
1
2
3
4
5
6
7
8
9
10
if test $# = 0; then
    #BUG in builtin_exec! will glob param!
    #exec "$THIS_SH" "$0" 'param_glob.t*'
    "$THIS_SH" "$0" 'param_glob.t*'
    exit
fi
echo $*
echo $@
echo "$*"
echo "$@"