Does pdksh (public domain korn shell) support associative arrays? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T19:25:42Zhttp://stackoverflow.com/feeds/question/342147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/342147/does-pdksh-public-domain-korn-shell-support-associative-arrays0Does pdksh (public domain korn shell) support associative arrays?George Jempty2008-12-04T21:29:14Z2008-12-04T21:48:26Z
<p>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).</p>
<p>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.</p>
<p>./find_actions.ksh: line 2: typeset: -A: invalid option
typeset: usage: typeset [-afFirtx] [-p] name[=value] ...</p>
<p>Guess I'll be considering Perl instead, but I really wanted a good excuse to learn a dialect/language new to me</p>
http://stackoverflow.com/questions/342147/does-pdksh-public-domain-korn-shell-support-associative-arrays/342207#3422071Answer by Alastair for Does pdksh (public domain korn shell) support associative arrays?Alastair2008-12-04T21:48:09Z2008-12-04T21:48:09Z<p>Why not just use bash? It might not have explicit associative arrays, but you can <a href="http://linuxshellaccount.blogspot.com/2008/05/how-to-fake-associative-arrays-in-bash.html" rel="nofollow">fake them</a>.</p>
<p>Alternatively, zsh has <a href="http://zsh.dotsrc.org/Doc/Release/zsh_14.html#SEC72" rel="nofollow">excellent associative array support</a>.</p>
http://stackoverflow.com/questions/342147/does-pdksh-public-domain-korn-shell-support-associative-arrays/342209#3422091Answer by Darron for Does pdksh (public domain korn shell) support associative arrays?Darron2008-12-04T21:48:26Z2008-12-04T21:48:26Z<p>Take a look at ksh93, it supports associative arrays and is a much more complete/correct implementation of ksh.</p>
<p>See: <a href="http://kornshell.com/" rel="nofollow">kornshell.com</a></p>