source: MondoRescue/branches/3.2/mindi-busybox/shell/hush_test/hush-vars/star.tests@ 3232

Last change on this file since 3232 was 1765, checked in by Bruno Cornec, 16 years ago

Update to busybox 1.7.2

  • Property svn:executable set to *
File size: 217 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.