Hacker News new | ask | show | jobs
by _seininn 5250 days ago
For reference, to use associative arrays in Bash:

  declare -A table
  column="name"
  table[$column]="value"
Included in recent versions of bash :)
1 comments

I say typeset, you say declare, let's call the whole thing off! :)