loksh-noxz

[fork] a Linux port of OpenBSD's ksh
git clone https://noxz.tech/git/loksh-noxz.git
Log | Files | README

commit: 19a1311b43128b37987332c02d3fe7cab4b395fc
parent: 6b6f716b1b892d85e4c147b03fcf856e012e4017
author: Chris Noxz <chris@noxz.tech>
date:   Fri, 9 Jul 2021 15:05:04 +0200
rename README.md -> README
MREADME46+++++++++++++-------
DREADME.md36---------------
2 files changed, 30 insertions(+), 52 deletions(-)
diff --git a/README b/README
@@ -1,22 +1,36 @@
-$OpenBSD: README,v 1.16 2017/05/11 20:17:17 jmc Exp $
+```
+ _       _        _
+| | ___ | | _____| |__
+| |/ _ \| |/ / __| '_ \
+| | (_) |   <\__ \ | | |
+|_|\___/|_|\_\___/_| |_|
+```
 
-Last updated Jul '99 for pdksh-5.2.14.
+[![Build Status](https://github.com/dimkr/loksh/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/dimkr/loksh/actions)
 
-PDksh is a mostly complete AT&T ksh look-alike (see NOTES file for a list
-of things not supported).  Work is mostly finished to make it fully
-compatible with both POSIX and AT&T ksh (when the two don't conflict).
+## Overview
 
-PDksh was being maintained by Michael Rendell (michael@cs.mun.ca),
-who took over from Simon J. Gerraty (sjg@zen.void.oz.au) at the latter's
-suggestion.
+loksh is a [Linux](https://www.kernel.org/) port of [OpenBSD](http://www.openbsd.org/)'s *ksh*.
 
-Files of interest:
-	CONTRIBUTORS	short history of pdksh, people who contributed, etc.
-	NOTES		lists of known bugs in pdksh, at&t ksh, and posix.
-	PROJECTS	list of things that need to be done in pdksh.
-	LEGAL		A file detailing legal issues concerning pdksh.
+Unlike other ports of *ksh*, loksh targets only one platform, follows upstream closely and [keeps changes to a minimum](https://github.com/dimkr/loksh/compare/upstream%2Fmaster...master). loksh does not add any extra features; this reduces the risk of introducing security vulnerabilities and makes loksh a good fit for resource-constrained systems.
 
+## Installation
 
-BTW, THE MOST FREQUENTLY REPORTED BUG IS
-	echo hi | read a; echo $a	# Does not print hi
-I'm aware of this and there is no need to report it.
+loksh is included in many distributions:
+
+[![Packaging status](https://repology.org/badge/vertical-allrepos/loksh.svg?minversion=6.7.5&header=)](https://repology.org/project/loksh/versions)
+
+For example, under [Alpine Linux](https://alpinelinux.org/), loksh can be installed using `apk add loksh`.
+
+Alternatively, to build and install loksh from source:
+
+```bash
+meson --prefix=/usr build
+ninja -C build install
+```
+
+## Legal Information
+
+loksh is licensed under the same license as the upstream code it is based on.
+
+The ASCII art logo at the top was made using [FIGlet](http://www.figlet.org/).
diff --git a/README.md b/README.md
@@ -1,36 +0,0 @@
-```
- _       _        _
-| | ___ | | _____| |__
-| |/ _ \| |/ / __| '_ \
-| | (_) |   <\__ \ | | |
-|_|\___/|_|\_\___/_| |_|
-```
-
-[![Build Status](https://github.com/dimkr/loksh/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/dimkr/loksh/actions)
-
-## Overview
-
-loksh is a [Linux](https://www.kernel.org/) port of [OpenBSD](http://www.openbsd.org/)'s *ksh*.
-
-Unlike other ports of *ksh*, loksh targets only one platform, follows upstream closely and [keeps changes to a minimum](https://github.com/dimkr/loksh/compare/upstream%2Fmaster...master). loksh does not add any extra features; this reduces the risk of introducing security vulnerabilities and makes loksh a good fit for resource-constrained systems.
-
-## Installation
-
-loksh is included in many distributions:
-
-[![Packaging status](https://repology.org/badge/vertical-allrepos/loksh.svg?minversion=6.7.5&header=)](https://repology.org/project/loksh/versions)
-
-For example, under [Alpine Linux](https://alpinelinux.org/), loksh can be installed using `apk add loksh`.
-
-Alternatively, to build and install loksh from source:
-
-```bash
-meson --prefix=/usr build
-ninja -C build install
-```
-
-## Legal Information
-
-loksh is licensed under the same license as the upstream code it is based on.
-
-The ASCII art logo at the top was made using [FIGlet](http://www.figlet.org/).