Here's a good bash FAQ. It contains questions like "how do I use associative arrays", with answers like "this is a complex question."
I don't even have to ask in any half-decent scripting language.
http://mywiki.wooledge.org/BashFAQ/
To use associative arrays in ksh:
typeset -A table column="name" table[$column]="value" echo ${table[$column]}
Edit: forgot to dereference column when setting value in table.
declare -A table column="name" table[$column]="value"
Here's a good bash FAQ. It contains questions like "how do I use associative arrays", with answers like "this is a complex question."
I don't even have to ask in any half-decent scripting language.
http://mywiki.wooledge.org/BashFAQ/