Does pdksh (public domain korn shell) support associative arrays? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:25:42Z http://stackoverflow.com/feeds/question/342147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/342147/does-pdksh-public-domain-korn-shell-support-associative-arrays 0 Does pdksh (public domain korn shell) support associative arrays? George Jempty 2008-12-04T21:29:14Z 2008-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#342207 1 Answer by Alastair for Does pdksh (public domain korn shell) support associative arrays? Alastair 2008-12-04T21:48:09Z 2008-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#342209 1 Answer by Darron for Does pdksh (public domain korn shell) support associative arrays? Darron 2008-12-04T21:48:26Z 2008-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>