Based on an assoziative array in a bash script I need to iterate over it to get key & value.
#!/bin/bash
declare -A array
array[foo]=bar
array[bar]=foo
I actually don't understand how to get the key while using a for-in loop. Thanks in advance!
|
Based on an assoziative array in a bash script I need to iterate over it to get key & value.
I actually don't understand how to get the key while using a for-in loop. Thanks in advance! |
||||
|
|
|
The keys are accessed using an exclamation point: You can iterate over the key/value pairs like this:
Note the use of quotes around the variable in the The confusion in the other answer comes from the fact that your question includes "foo" and "bar" for both the keys and the values. |
|||||
|
|
You can access the keys with
Then, iterating over the key/value pairs is easy:
|
|||||||||||||
|