| File | Date | Author | Commit |
|---|---|---|---|
| .github | 2026-04-01 |
|
[d745cc] arith: scope(): Fix check for '[' past end of s... |
| bin | 2026-04-14 |
|
[4788cd] More mixed miscellanea |
| docs | 2021-12-12 |
|
[e54001] Various minor capitalization and typo fixes (#371) |
| src | 2026-06-28 |
|
[0dfc70] Revert accidental deletion killing %?STRING (re... |
| .gitignore | 2024-01-31 |
|
[e47d3f] Smattering of minor fixes (#713) |
| ANNOUNCE | 2024-08-01 |
|
[f0999a] Release 1.0.10 |
| COPYRIGHT | 2026-01-22 |
|
[dfbb1c] Fix test failures caused by slow SIGCHLD handli... |
| LICENSE.md | 2022-07-28 |
|
[441dcc] Upgrade licence to EPL 2.0 |
| NEWS | 2026-06-28 |
|
[0dfc70] Revert accidental deletion killing %?STRING (re... |
| README.md | 2026-01-21 |
|
[ad2727] bin/package: add support for DESTDIR (re: 67eea... |
| TODO | 2024-08-01 |
|
[f0999a] Release 1.0.10 |
This is version 1.0.x of the 93u+m fork of the KornShell, including a
sizeable number of enhancements and roughly a thousand bugfixes compared
to the last stable release (93u+ 2012-08-01) of
ksh93,
formerly developed by AT&T Software Technology (AST).
The sources in this repository were forked from the
GitHub AST repository
which is no longer under active development.
For information on the shell, see
src/cmd/ksh93/README
and other files in the same directory.
For user-visible fixes, see NEWS
and click on commit messages for full details.
For all fixes, see the commit log.
For known issues in the current release, see TODO.
You can download a release tarball,
or clone the current code from the 1.0 branch:
git clone -b 1.0 https://github.com/ksh93/ksh
KornShell 93u+m is currently known to build and run on:
Systems that may work, but that we have not been able to test lately, include:
KornShell 93u+m supports systems that use the ASCII character set as the
lowest common denominator. This includes Linux on IBM zSeries, but not z/OS.
Support for the EBCDIC character set has been removed, as we do not have
access to a mainframe with z/OS to test and maintain it.
The build system requires only a basic POSIX-compatible shell, utilities and
compiler environment. The cc, ar and getconf commands are needed at
build time. The tput and getconf commands are used at runtime if
available (for multiline editing and to complete the getconf built-in,
respectively). Not all systems come with all of these preinstalled. Here are
system-specific instructions for making them available:
pkg install.clang, binutils, getconfncurses-utils, getconfxcode-select --installTo build ksh with a custom configuration of features, edit
src/cmd/ksh93/SHOPT.sh (github.com).
On systems such as NetBSD and OpenBSD, where /bin/ksh is not ksh93 and the
preinstalled /etc/ksh.kshrc profile script is incompatible with ksh93, you'll
want to disable SHOPT_SYSRC to avoid loading it on startup -- unless you can
edit it to make it compatible with ksh93. This generally involves differences
in the declaration and usage of local variables in functions.
Then cd to the top directory and run:
bin/package make
To suppress compiler output, use quiet make instead of make.
In some non-POSIX shells you might need to prepend sh to all calls to bin/package.
Parallel building is supported by appending -j followed by the
desired maximum number of concurrent jobs, e.g., bin/package make -j4.
This speeds up building on systems with more than one CPU core.
(Type bin/package host cpu to find out how many CPU cores your system has.)
The compiled binaries are stored in the arch directory, in a subdirectory
that corresponds to your architecture. The command bin/package host type
outputs the name of this subdirectory.
Dynamically linked binaries, if supported for your system, are stored in
dyn/bin and dyn/lib subdirectories of your architecture directory.
If built, they are built in addition to the statically linked versions.
Export AST_NO_DYLIB to deactivate building dynamically linked versions.
If you have trouble or want to tune the binaries, you may pass additional
compiler and linker flags. It is usually best to export these as environment
variables before running bin/package as they could change the name of
the build subdirectory of the arch directory, so exporting them is a
convenient way to keep them consistent between build and test commands.
Note that this system uses CCFLAGS instead of the usual CFLAGS.
An example that makes Solaris Studio cc produce a 64-bit binary:
export CCFLAGS="-m64 -O" LDFLAGS="-m64"
bin/package make
Alternatively you can append these to the command, and they will only be
used for that command. You can also specify an alternative shell in which
to run the build scripts this way. For example:
bin/package make SHELL=/bin/bash CCFLAGS="-O2 -I/opt/local/include" LDFLAGS="-L/opt/local/lib"
Note: Do not add compiler flags that cause the compiler to emit terminal
escape codes, such as -fdiagnostics-color=always; this will cause the
build to fail as the probing code greps compiler diagnostics. Additionally,
do not add the -ffast-math compiler flag; arithmetic bugs will occur when
using that flag.
For more information run
bin/package help
Many other commands in this repo self-document via the --help, --man and
--html options; those that do have no separate manual page.
The autoloadable man function in
src/cmd/ksh93/fun/man
integrates this self-documentation into your regular man command.
After compiling, you can run the regression tests.
To run the default test sets for ksh and the build system, use:
bin/package test
For ksh, use the shtests command directly to control the regression test runs.
Start by reading the information printed by:
bin/shtests --man
To hand-test ksh (as well as the utilities and the autoloadable functions
that come with it) without installing, run:
bin/package use
Usage: bin/package install install_root_directory [ command ... ]
Any command from the arch directory can be installed. If no command is
specified, ksh and shcomp are assumed.
The install_root_directory is the directory from which the command(s) will
actually be run. It will be created if it does not exist. Commands are
installed into its bin subdirectory, any shared libraries into lib, C
development header files into include/ast, and each command's manual page,
if available, is installed into share/man.
If a dynamically linked version of ksh and associated commands has been
built, then the install subcommand will prefer that: commands, dynamic
libraries and associated header files will be installed then. To install the
statically linked version instead (and skip the header files), either delete
the dyn subdirectory, or export AST_NO_DYLIB=y before building to prevent
it from being created in the first place.
An additional install prefix directory path can be passed in DESTDIR, which
can be either passed as an environment variable or specified on the comannd
line as an extra assignment-like argument. The value of DESTDIR will be
prefixed to the path of every destination file when installing it, but not
when configuring the install root directory in the installed files (as may be
required by individual systems, e.g., to find dynamic libraries). This feature
is designed for packagers who need to install ksh into a directory other than
the one from which it will be run in order to package it.
The following is the official AT&T description from 1993 that came with the
ast-open distribution. The text is original, but hyperlinks were added here.
KSH-93 is the most recent version of the KornShell Language described in
"The KornShell Command and Programming Language," by Morris Bolsky and David
Korn of AT&T Bell Laboratories, ISBN 0-13-182700-6. The KornShell is a shell
programming language, which is upward compatible with "sh" (the Bourne
Shell), and is intended to conform to the IEEE P1003.2/ISO 9945.2
Shell and Utilities standard.
KSH-93 provides an enhanced programming environment in addition to the major
command-entry features of the BSD shell "csh". With KSH-93, medium-sized
programming tasks can be performed at shell-level without a significant loss
in performance. In addition, "sh" scripts can be run on KSH-93 without
modification.
The code should conform to the
IEEE POSIX 1003.1 standard
and to the proposed ANSI C standard so that it should be portable to all
such systems. Like the previous version, KSH-88, it is designed to accept
eight bit character sets transparently, thereby making it internationally
compatible. It can support multi-byte characters sets with some
characteristics of the character set given at run time.
KSH-93 provides the following features, many of which were also inherent in
KSH-88:
Documentation for KSH-93 consists of an "Introduction to KSH-93",
"Compatibility with the Bourne Shell" and a manual page and a README file.
In addition, the "New KornShell Command and Programming Language" book is
available from Prentice Hall.