source: MondoRescue/branches/3.2/mindi-busybox/shell/hush_test/hush-parsing/starquoted2.tests

Last change on this file was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
  • Property svn:executable set to *
File size: 740 bytes
Line 
1if test $# != 0; then
2 exec "$THIS_SH" "$0"
3fi
4
5# No params!
6for a in "$*"; do echo Should be printed; done
7for a in "$@"; do echo Should not be printed; done
8# Yes, believe it or not, bash is mesmerized by "$@" and stops
9# treating "" as "this word cannot be expanded to nothing,
10# but must be at least null string". Now it can be expanded to nothing.
11for a in "$@"""; do echo Would not be printed by bash; done
12for a in """$@"; do echo Would not be printed by bash; done
13for a in """$@"''"$@"''; do echo Would not be printed by bash; done
14for a in ""; do echo Should be printed; done
15
16# Bug 207: "$@" expands to nothing, and we erroneously glob "%s\n" twice:
17printf 'Empty:%s\n' "$@"
18printf "Empty:%s\n" "$@"
19printf "Empty:%s\\n" "$@"
Note: See TracBrowser for help on using the repository browser.