Bash Arrays: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:


==Initialization==
==Initialization==
Individual elements are initialized by using [...] notation:


  a[0]="something"
  a[0]="something"

Revision as of 21:22, 23 February 2018

Internal

Indexed Arrays

External

Overview

bash indexed arrays are 0-based and unidimensional. No explicit declaration is necessary if at least one element is initialized as described below:

Declaration

Initialization

Individual elements are initialized by using [...] notation:

a[0]="something"

Use Cases

Associative Arrays