mirror of
https://github.com/sheumann/hush.git
synced 2024-12-25 18:33:06 +00:00
11 lines
190 B
Plaintext
Executable File
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 "$@"
|