Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9141723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:40:59+00:00 2026-06-17T09:40:59+00:00

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

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:41:00+00:00Added an answer on June 17, 2026 at 9:41 am

    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.

    Note: Bash 4 does not come with Mac OS X because of its GPLv3 license; you have to download and install it. For more on that see here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a dictionary with a key/value of string / image for
I have been trying to create a dictionary with a string for each key
I'm trying to create a dictionary type - ie hash table with a string
I'm trying to create a Dictionary with array of integer, string and boolean data
I am trying to create a dictionary data type using python 3.2. I am
I'm trying to build words in arrays by their key value in a dictionary.
I'm trying to create a dictionary collection from a single collection below the key
I'm trying to create a wrapper for a Dictionary<String,Foo> . Dictionary<String,Foo> implements IEnumerable<KeyValuePair<String,Foo>> ,
I am trying to create a dictionary and assign a value of 0 to
I am trying to create a dictionary from 2 lists where one list contains

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.