Bash provides two types of parameters: "scalar" values and arrays. A scalar value can be a string or a number; it represents a single "thing".
Most of the time, scalar values are sufficient to contain your data. But sometimes, you need to store a list of scalar values. In this case you will use an array.
There are two kinds of arrays:
The first few sections of this document will cover numerically-indexed arrays (hereafter simply known as "arrays"). Details about associative arrays will show up at the end.
Bash arrays can only store scalar values. There is no ability to create a two-dimensional array (array of arrays).
You can initialize an array by assigning a parenthesized list of elements (possibly empty) to an variable.
myarray=("one" "two" "three")
As is the case with every variable assignment, there must be no spaces around the equal sign.
Note that there are no comma separators between the elements; it is a whitespace-separated list of strings.
In fact, the amount of whitespace inside the parentheses is completely arbitrary. Newlines are allowed; use as many as you want to improve readability.
myarray=(
"first element"
"second element"
"this is the last element"
)
Assigning a list of strings to an array variable in this manner will store the first string at index zero, the next string at index one, the next at index two, and so on.
It is possible to initialize a "sparse array" by specifying the indices you need.
raindrops=([3]="Pling" [5]="Plang" [7]="Plong")
To reiterate: array indices are zero-based. This snippet outputs "true":
myarray=("one" "two" "three")
[[ "${myarray[0]}" == "one" ]] && echo true || echo false
You can use the declare
(or local
inside a function) command to specify that a variable will hold an array.
declare -a myarray
It is more idiomatic to just assign a (perhaps empty) parenthesized list to initialize the variable.
As you saw in the note above, the syntax to access an array element is ${myarray[$index]}
.
The index is given in square brackets.
The curly braces are required.
For numerically-indexed arrays, the index is an arithmetic expression. The Bash manual states:
Within an arithmetic expression, shell variables may also be referenced by name without using the parameter expansion syntax.
This means that the $
is not required for "simple" variable expansion.
You can access elements like this, which is a bit easier to read:
i=5
echo "${myarray[i]}"
# ..............^
If the given index does not exist in the array, the result of the expansion is an empty string.
To assign to a particular array entry, use this syntax:
myarray[10]="hello"
To append to an array, use the +=
concatenating-assigment operator, and use parentheses:
myarray+=("new element 1" "new element 2")
You will typically need to iterate over the values of an array. Use a for loop (that you saw in the Looping concept):
myarray=("one" "two" "three")
for value in "${myarray[@]}"; do
echo "$value"
done
Note the special syntax to expand the array: "${myarray[@]}"
This form of parameter expansion substitutes the array values as separate words.
It is somewhat equivalent to:
for value in "${myarray[0]}" "${myarray[1]}" ... "${myarray[n]}"
The "${myarray[@]}"
form works with sparse arrays, expanding to only defined values.
This special expansion, where the index is an ampersand (@
), is only special within double quotes.
Here are another couple of bits of special syntax that we need for iterating over an array. These are described in the manual in Shell Parameter Expansion.
To find the length of an array, use ${#myarray[@]}
, with a #
before the name.
The "length" of an array means the number of elements in it.
To extract the list of indices of an array, use "${!myarray[@]}"
, with a !
before the name and the expansion in double quotes.
For numerically-indexed arrays, the indices are expanded in numerical order.
Sometimes you need the index as well as the value. There are a couple of ways to do this.
When you know the indices form an uninterrupted sequence, you can use an arithmetic for loop.
for ((i = 0; i < ${#myarray[@]}; i++)); do
echo "$i -> ${myarray[i]}"
done
Note the ${#myarray[@]}
syntax, with the #
character in front of the array name.
Since arrays use zero-based indexing, the array's last index is one less than the array length.
When the array is sparse, you can use this form:
for index in "${!raindrops[@]}"; do
echo "$index -> ${raindrops[index]}"
done
Note the ${!myarray[@]}
syntax, with the !
character in front of the array name.
If you want to look at the contents of an array, use the declare
command with the -p
option:
a=("the 'first' element"
second
third
'the "last" element')
declare -p a
This outputs the contents with canonical shell quoting.
declare -a a=([0]="the 'first' element" [1]="second" [2]="third" [3]="the \"last\" element")
To reiterate, associative arrays use strings for indices, not numbers. Everything written above applies for associative arrays, but with small differences. Generally, we use the term "key" not "index": associative arrays map keys to values.
Unlike arrays, associative arrays must be declared.
Use the -A
option to declare
(or local
in a function):
declare -A mymap
myfunc() {
local -A my_local_map
# ...
}
The key-value pairs are specified within the parenthesized list:
mymap=([first]=foo [second]=bar [third]=baz)
declare -p mymap
This outputs:
declare -A mymap=([second]="bar" [first]="foo" [third]="baz")
Be aware that associative arrays are unordered.
The declaration and initialization can happen in one line.
declare -A mymap=([first]=foo [second]=bar [third]=baz)
In recent Bash versions, the initialization can use a (key value key value ...)
list.
declare -A mymap=(first foo second bar third baz)
The same syntax as before is used to access elements: ${mymap[$key]}
.
Associative array keys are not evaluated in an arithmetic context. The usual parameter expansion syntax is required.
Assignment uses the same syntax as before:
mymap[$key]="$value"
You can use a for value in "${mymap[@]}"
loop to iterate.
However, you typically also want the key to go along with the value.
Use the "${!mymap[@]}"
syntax we saw above.
for key in "${!mymap[@]}"; do
echo "$key -> ${mymap[$key]}"
done
This outputs
second -> bar
first -> foo
third -> baz
To re-emphasize, there is no order to the keys.