]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/appendop1.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / appendop1.sub
CommitLineData
ac50fbac
CR
1typeset -A foo=([one]=bar [two]=baz [three]=quux)
2typeset -p foo
3
4foo+=zero
5typeset -p foo
6
7foo+=([four]=four)
8typeset -p foo
9
10typeset -ia iarr=(2 2 3)
11iarr+=1
12typeset -p iarr
13
14iarr+=(4 5 6)
15typeset -p iarr