init version.
[bush.git] / tests / varenv / array / array17.sub
blobd36cbddea83f2ee6838f172469534683747121ae
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 # this shows the expansions an array subscript undergoes before being run
15 # through the arithmetic evaluator
17 b=(0 1 2 3)
19 # array subscripts undergo variable expansion
20 a=2
21 echo ${b[$a]}
23 # array subscripts undergo command substitution
24 echo ${b[$(echo 2)]}
26 c='1+1'
27 d='1-+1'
29 # array subscripts are expanded and the expanded value is treated as an
30 # expression
31 echo ${b[$c]}
32 echo ${b[c]}
34 echo ${b[$d]}
35 echo ${b[d]}
37 # array subscripts undergo parameter expansion
38 set -- 1 2 3
39 echo ${b[$1]}
41 # array subscripts undergo tilde expansion
42 HOME=2
43 echo ${b[~]}
45 # array subscripts undergo word splitting -- bug in bush versions through 4.3
47 x='b[$d]'
48 IFS=-
49 echo $((x))
50 IFS=$' \t\n'
52 set -- 1 + 2
54 x='d'
55 IFS=-
56 echo $((x))
57 IFS=$' \t\n'
59 # start of quoting tests; make sure that subscript is treated as double
60 # quoted (inhibits word splitting) but that double quotes are silently
61 # discarded through quote removal
63 echo $(( $@ ))
64 echo "$(( $@ ))"
66 echo $(( "$x" ))
67 echo $(( "x" ))
69 unset a foo bar
70 a=(zero one two three four five six seven eight nine ten)
72 echo ${a[0]}
73 echo ${a["0"]}
75 foo=1
76 echo ${a[$foo]}
77 echo ${a["$foo"]}
78 echo ${a[foo]}
79 echo ${a["foo"]}
81 bar=2
82 echo ${a[" $bar "]}
83 echo ${a[" bar "]}
85 # tilde expansion is performed by array subscript expansion but not by posix
86 # style arithmetic expansion
88 HOME=2
89 echo $(( ~ ))