mirror of
https://github.com/sheumann/hush.git
synced 2025-01-10 16:29:44 +00:00
11 lines
190 B
Plaintext
11 lines
190 B
Plaintext
|
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 "$@"
|