commit bash-20120831 snapshot

This commit is contained in:
Chet Ramey
2012-09-13 11:55:04 -04:00
parent df0e4bfe75
commit a7ad477fe7
58 changed files with 67921 additions and 22187 deletions
+30
View File
@@ -0,0 +1,30 @@
# start at a test suite for negative indexed array subscripts -- post bash-4.2
x=( 0 1 2 3 4 5)
declare -p x
unset 'x[-1]'
declare -p x
unset 'x[-2]'
declare -p x
unset 'x[-10]'
x[-2]=3
declare -p x
x+=( five )
declare -p x
x[-1]=5
declare -p x
x+=( [-1]=foo )
declare -p x
x[-1]=5
declare -p x
x[-2]+=four
declare -p x
echo "strlen(${x[-2]})" = ${#x[-2]}