up vote 13 down vote favorite
6
share [g+] share [fb]

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!

link|improve this question

58% accept rate
feedback

2 Answers

up vote 16 down vote accepted

The keys are accessed using an exclamation point: ${!array[@]}, the values are accessed using ${array[@]}.

You can iterate over the key/value pairs like this:

for i in "${!array[@]}"
do
  echo "key  : $i"
  echo "value: ${array[$i]}"
done

Note the use of quotes around the variable in the for statement (plus the use of @ instead of *). This is necessary in case any keys include spaces.

The confusion in the other answer comes from the fact that your question includes "foo" and "bar" for both the keys and the values.

link|improve this answer
@John: Bash 4 added associative arrays – Daenyth Jun 24 '10 at 19:45
feedback

You can access the keys with ${!array[@]}:

bash-4.0$ echo "${!array[@]}"
foo bar

Then, iterating over the key/value pairs is easy:

for i in "${!array[@]}"
do
  echo "key :" $i
  echo "value:" ${array[$i]}
done
link|improve this answer
perfect - thanks! – pex Jun 24 '10 at 19:10
2  
No, that's incorrect. See my answer. – Dennis Williamson Jun 24 '10 at 19:32
You are totally right, just corrected the answer. Answered too quickly. Your answer should get the tick mark – tonio Jun 24 '10 at 19:44
I had the "!" - didn't even notice, there was none, sorry.. :) – pex Jun 25 '10 at 0:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.