Have associative array
OPTIONS[a]="a-value"
have another array id and need set a value from OPTIONS only when some value is NOT set, so something like
id[KEY1]=${id[KEY1]:-OPTIONS[a]}
but this not works.
How to use the bash's :- "variable substitution" with associative arrays?