init version.
[bush.git] / tests / 2.dollor / dollar-at-star / dollar-at-star5.sub
blobd07c61a05e35a2a7cc22634fc30050578f145553
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 # testing various combinations of quoted and unquoted expansions of $@, and
15 # whether they generate empty words after expansion
17 n() { echo "$#"; }
19 n "$@"
20 n ${foo-"$@"}
21 n "${foo-$@}"
23 n ""$@
24 n """$@"
26 n $(true)$@
27 n "$(true)$@"
28 n "$(true)$@"
29 n "$(true)""$@"
31 n $xxx$@
32 n "$xxx$@"
33 n $xxx"$@"
34 n "$xxx""$@"
36 recho $xxx"$@"
37 echo after 1
39 recho "$xxx$@"
40 echo after 2
42 recho ${foo:-$xxx"$@"}
43 echo after 3
45 # this is where these things start to differ
46 echo same as 1
47 recho "${foo:-$xxx"$@"}"
48 echo same as 2
49 recho "${foo:-$xxx$@}"
51 echo null fields
52 recho ""$@
53 recho """$@"
55 echo null fields in rhs
56 echo null string with unquoted '$@'
57 recho ${foo:-""$@}
58 echo null string with quoted '$@'
59 recho ${foo:-"""$@"}
61 echo assignment
62 recho "${foo=$@}"
63 echo variable
64 recho "$foo"
65 echo dollar-at
66 recho "${@}"