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"
To use associative arrays in ksh:
ksh is much more decent than bash, although I reccommend using in an emacs M-x shell buffer for better command line editing.Edit: forgot to dereference column when setting value in table.