DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Maps / Dictionaries — Example 55

Quick explanation + ready code for: Maps / Dictionaries.

Shell Maps / Dictionaries Back to examples
Back to language
Syntax: Maps / Dictionaries in Shell. ID: #55

Code

declare -A m
m[a]=11
m[b]=12
echo "${m[a]}"

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.