Imported from ../bash-4.0-rc1.tar.gz.
This commit is contained in:
parent
f1be666c7d
commit
3185942a52
666 changed files with 188710 additions and 54674 deletions
22
tests/assoc4.sub
Normal file
22
tests/assoc4.sub
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
IFS=/
|
||||
declare -A i
|
||||
|
||||
i[0]=fooq
|
||||
i[1]=
|
||||
i[2]=barq
|
||||
i[3]=
|
||||
|
||||
recho "${i[*]:0}"
|
||||
recho "${i[@]:0}"
|
||||
|
||||
recho "${i[*]/q/!}"
|
||||
recho "${i[@]/q/!}"
|
||||
|
||||
recho "${i[*]#?}"
|
||||
recho "${i[@]#?}"
|
||||
|
||||
# Need to complete this with case-modifying expansion examples
|
||||
recho "${i[*]^?}"
|
||||
recho "${i[@]^?}"
|
||||
recho "${i[*]^^?}"
|
||||
recho "${i[@]^^?}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue