fidian/multishell-pdksh
All versions of pdksh I can find and compile
27
Contains every version of the pdksh that I am able to compile (I'm not great at m4, patches welcome). All of the shells are located in /usr/local/bin
and have the source code's version as their version number. There are symlinks set up to get the most recent release when there are multiple dot releases.
These shells, and many others, are included within the Multishell Docker Image. The additional scripts that are included on this image will be described there.
pdksh-4 -> pdksh-4.5
pdksh-4.5
You can generate this list yourself using this command:
( cd /usr/local/bin; for F in *; do if [[ -L "$F" ]]; then echo "$F -> $(readlink "$F")"; else echo "$F"; fi; done ) | sort -V
Source came from multiple locations.
Git repository containing all source code and patches that were used to build the binaries: https://github.com/multishell/pdksh
Meant to be built using the these tools: https://github.com/multishell/multishell-scripts
docker pull fidian/multishell-pdksh