blob: 7c5ff45b8d8511ec775ba968bacd7dc344ca3d9f [file] [log] [blame]
Denys Vlasenkoe34dbc42017-07-24 02:49:56 +02001if 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" "$@"