bash.sh: array(val val val) -> array=(val val val)

This commit is contained in:
Michael Pierce 2018-02-10 12:22:42 -08:00 committed by GitHub
parent 3877873002
commit 9a04ba0ef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ array[0]=val # several ways to define an array
array[1]=val
array[2]=val
array=([2]=val [0]=val [1]=val)
array(val val val)
array=(val val val)
${array[i]} # displays array's value for this index. If no index is supplied, array element 0 is assumed
${#array[i]} # to find out the length of any element in the array