]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/nameref9.sub
Bash-4.4 distribution sources and documentation
[thirdparty/bash.git] / tests / nameref9.sub
CommitLineData
a0c0a00f
CR
1arr=( idx1 idx2 )
2i='arr[1]'
3echo ${!i}
4echo ${!i/x/X}
5
6typeset -n f='arr[1]'
7echo ${f}
8echo ${f/x/X}