Files
android_external_bash/tests/errors5.sub
2019-01-07 09:27:52 -05:00

13 lines
136 B
Plaintext

array[1]=one
array[2]=two
set -u
( echo ${#array} )
( echo ${array} )
( echo ${array[7]} )
set -- 1 2 3
( echo ${#7} )
( echo ${7} )