summaryrefslogtreecommitdiff
path: root/shell/msh_test/msh-vars/star.tests (plain)
blob: 5554c4090a6744cf19ac1e40a97e84823164dd22
1if test $# = 0; then
2 exec "$THIS_SH" star.tests 1 abc 'd e f'
3fi
4# 'd e f' should be split into 3 separate args:
5for a in $*; do echo ".$a."; done
6
7# must produce .1 abc d e f.
8for a in "$*"; do echo ".$a."; done
9