I recently ran up against a wall doing some bash shell programming where an associative array would have solved my problems. I googled about features of the Korn shell and learned that it supports associative arrays, so I installed Cygwin's pdksh (public domain korn shell).

However, when trying to create an associative array in the prescribed manner (typeset -A varName), I received the following errors, so I'm beginning to suspect pdksh does not support associative arrays.

./find_actions.ksh: line 2: typeset: -A: invalid option typeset: usage: typeset [-afFirtx] [-p] name[=value] ...

Guess I'll be considering Perl instead, but I really wanted a good excuse to learn a dialect/language new to me

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Take a look at ksh93, it supports associative arrays and is a much more complete/correct implementation of ksh.

See: kornshell.com

link|improve this answer
Doesn't seem to be available in cygwin; pdksh is the only ksh-like shell. – Alastair Dec 4 '08 at 21:51
feedback

Why not just use bash? It might not have explicit associative arrays, but you can fake them.

Alternatively, zsh has excellent associative array support.

link|improve this answer
bash version 4 has associative arrays. – glenn jackman Jul 11 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.