Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a dictionary of key value pair using Bash script. I am trying using this logic:

declare -d dictionary
defaults write "$dictionary" key -string "$value"

...where $dictionary is a variable, but this is not working.

Is there a way to create key-value pairs in Bash script?

share|improve this question
In which shell? – Johnsyweb Jan 17 at 0:24
i was working on bash. Figured a way to do this myself. – RKS Jan 17 at 1:22
use of this also help: urls+=( '<dict><key>key1</key><string>'$value1'</string><key>key2</key><string>'$value2'‌​</string><key>key3</key><string>'$value3'</string></dict>' – RKS Jan 17 at 1:24
2  
Great! You're allowed (and even encouraged) to answer your own questions on StackOverflow, that way you'll help others in a similar situation. – Johnsyweb Jan 17 at 1:25
I will upvote your answer if you include some sample usage and output. Good luck. – shellter Jan 17 at 1:39

1 Answer

up vote 3 down vote accepted

In bash version 4 associative arrays were introduced.

declare -A arr

arr["key1"]=val1

arr+=( ["key2"]=val2 ["key3"]=val3 )

The arr array now contains the three key value pairs. Bash is fairly limited what you can do with them though, no sorting or popping etc.

for key in ${!arr[@]}; do
    echo ${key} ${arr[${key}]}
done

Will loop over all key values and echo them out.

share|improve this answer
+1. Don't need to quote the keys though. – glenn jackman Jan 17 at 2:14
It is important to note that Bash 4 does not come with Mac OS X because of its GPLv3 license; you have to download and install it. (Apple still ships Bash 3.2.) – PleaseStand Jan 17 at 2:22
Awesome, good to know this... :) – RKS Jan 17 at 2:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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