mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
13 lines
136 B
Plaintext
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} )
|