I'm writing a Korn shell script for a client, who will use it on AIX 5.3. For testing, I'm using version 93u-1 Debian Wheezy. Is this the same version as the one I'll find on AIX?
Asked
Active
Viewed 2,452 times
1 Answers
3
In summary, no.
oslevel -s
5300-08-03-0831
/usr/bin/ksh
- Version M-11/16/88
/usr/bin/ksh93
- Version M-12/28/93
The version may differ slightly between different TL/SP levels in AIX. AIX by default uses ksh, and very little uses ksh93. Obviously, you can configure your script to use /usr/bin/ksh93
. /usr/bin/ksh93
is provided by the same fileset which provides the other shells (bos.rte.shell
).

EightBitTony
- 9,311
- 1
- 34
- 46
-
Thanks, I'll fallback to `ksh93` is my script needs it. In the mean time I found information about both ksh93 and ksh: http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.cmds/doc/aixcmds3/ksh.htm – Martin Geisler Dec 14 '11 at 13:50