illumos-port-bash/tests/errors5.sub

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} )