2007-05-13 18:34:53 +00:00
|
|
|
if test $# = 0; then
|
|
|
|
exec "$THIS_SH" star.tests 1 abc 'd e f'
|
|
|
|
fi
|
|
|
|
# 'd e f' should be split into 3 separate args:
|
|
|
|
for a in $*; do echo ".$a."; done
|
|
|
|
|
2007-05-23 00:32:25 +00:00
|
|
|
# must produce .1 abc d e f.
|
|
|
|
for a in "$*"; do echo ".$a."; done
|