improve of cmpl.
[bush.git] / tests / varenv19.sub
blob753f508cd2ae393c418093067bd433bd3cb8a67e
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/>.
15 # variable attribute inheritance problems without specifying -a or -A
17 function aaa() {
18         local x='1 2 3'
19         echo "aaa ${x}"
22 function bbb {
23         local x
24         x=(4 5 6)
25         echo "bbb ${x[*]}"
28 ccc()
30         local x=(7 8 9)
31         echo "ccc ${x[*]}"
34 function ddd
36         local -r x='0'
37         echo "ddd ${x}"
38         aaa
39         bbb
40         ccc
43 ddd
45 f()
47         local x=(one two three)
48         declare -p x
51 declare -p x