hush/shell/hush_test/hush-vars/param_glob.tests
Denis Vlasenko bb929517a8 hush: fix "if { echo foo; } then { echo bar; } fi" parsing
function                                             old     new   delta
done_word                                            728     793     +65
parse_stream                                        2084    2098     +14
2009-04-16 10:59:40 +00:00

11 lines
199 B
Plaintext
Executable File

if test $# = 0; then
# UNFIXED 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 "$@"