Bugzilla – Bug 155639
bash-specific syntax in /etc/ksh.kshrc
Last modified: 2006-03-07 12:47:41 UTC
/etc/ksh.kshrc is a symlink to /etc/bash.bashrc; the same startup file is executed by both shells. This startup file contains a bit of bash-specific syntax at line 212 that causes ksh to choke: function which () { To make both bash and ksh happy, this line should read: which () {
Created attachment 71487 [details] Patch for /etc/bash.bashrc
Already fixed but with function which { ... to make new bash 3.1 _and_ ksh happy.