mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-21 20:35:12 +00:00
Merge pull request #21 from 59023g/patch-1
BUG: bash.sh: array(val val val) -> array=(val val val)
This commit is contained in:
commit
23877a3c82
@ -147,7 +147,7 @@ array[0]=val # several ways to define an array
|
|||||||
array[1]=val
|
array[1]=val
|
||||||
array[2]=val
|
array[2]=val
|
||||||
array=([2]=val [0]=val [1]=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]} # 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
|
${#array[i]} # to find out the length of any element in the array
|
||||||
|
Loading…
Reference in New Issue
Block a user