blob: f305c4cd99c4865bf60eea1f33923d1e475845df [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
Denis Vlasenkofeecc7b2009-03-20 12:12:33 +000016# Bug 207: "$@" expands to nothing, and we erroneously glob "%s\n" twice:
17printf 'Empty:%s\n' "$@"
18printf "Empty:%s\n" "$@"
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +000019printf "Empty:%s\\n" "$@"