]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/array3.sub
Imported from ../bash-3.1.tar.gz.
[thirdparty/bash.git] / tests / array3.sub
CommitLineData
95732b49
JA
1a=(0 1 2 3 4 5 6 7 8 9)
2
3echo ${a[@]: -1}
4
5echo ${a[@]:9}
6echo ${a[@]:10}
7echo ${a[@]:11}
8
9echo ${a[@]:7:3}