init version.
[bush.git] / tests / varenv / array / array18.sub
blob950308126be25f857120e98fc9e0f5c989f0cafc
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 # arrays referenced using @ subscript and positional parameters should behave
15 # the same way
17 foo=(0 0 0); [[ -z ${foo[@]#0} ]]; echo $?
19 recho "${foo[@]#0}"
20 bar=${foo[@]#0}
21 recho bar
22 recho $bar
23 recho -$bar-
24 recho "$bar"
26 qux="${foo[@]#0}"
27 recho qux
28 recho $qux
29 recho -$qux-
30 recho "$qux"
32 unset foo qux bar
34 set -- 0 0 0
36 recho "${@#0}"
37 bar=${@#0}
38 recho bar
39 recho $bar
40 recho -$bar-
41 recho "$bar"
43 qux="${@#0}"
44 recho qux
45 recho $qux
46 recho -$qux-
47 recho "$qux"