busybox/shell/hush_test/hush-vars/param_glob.tests
2008-06-18 17:49:58 +00:00

11 lines
190 B
Plaintext
Executable File

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 "$@"