1
0
mirror of https://github.com/sheumann/hush.git synced 2025-02-20 13:29:08 +00:00
2007-05-16 10:39:24 +00:00

9 lines
212 B
Plaintext
Executable File

if test $# = 0; then
exec "$THIS_SH" "$0" 1 abc 'd e f'
fi
for a in "$*"; do echo ".$a."; done
for a in "$@"; do echo ".$a."; done
for a in "-$*-"; do echo ".$a."; done
for a in "-$@-"; do echo ".$a."; done