hush/shell/hush_test/hush-parsing/starquoted.tests
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