blob: 3475edeb241b3b7141a8eae13b321269dd074d67 [file] [log] [blame]
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00001if 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 Should not be printed; done
12for a in """$@"; do echo Should not be printed; done
13for a in """$@"''"$@"''; do echo Should not be printed; done
14for a in ""; do echo Should be printed; done
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +000015
16# Bug 207: "$@" expands to nothing, and we erroneously glob "%s\\n" twice:
17printf "Empty:%s\\n" "$@"