]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/array3.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / array3.sub
1 a=(0 1 2 3 4 5 6 7 8 9)
2
3 echo ${a[@]: -1}
4
5 echo ${a[@]:9}
6 echo ${a[@]:10}
7 echo ${a[@]:11}
8
9 echo ${a[@]:7:3}