90s

Minimalist, customizable shell written in C99 with syntax highlighting
git clone https://codeberg.org/night0721/90s
Log | Files | Refs | README | LICENSE

commit febb828136ace5dc9d4ba9fe69c7586ce38b711e
parent b96af06a3d3d007a244af14c0bcdba5903c3cbbc
Author: night0721 <[email protected]>
Date:   Sun, 18 Feb 2024 21:46:10 +0000

fix make and add license contributions

Diffstat:
MMakefile | 2+-
MREADME.md | 6++++++
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -31,7 +31,7 @@ install: all cp -f rush ${DESTDIR}${PREFIX}/bin chmod 755 ${DESTDIR}${PREFIX}/bin/rush mkdir -p ${DESTDIR}${MANPREFIX}/man1 - cp -f rush.1 ${DESTDIR}${MANPREFIX}/man1 + sed "s/VERSION/${VERSION}/g" < rush.1 > ${DESTDIR}${MANPREFIX}/man1/rush.1 chmod 644 ${DESTDIR}${MANPREFIX}/man1/rush.1 uninstall: diff --git a/README.md b/README.md @@ -64,6 +64,12 @@ $ ./rush - Underline file path if it exists `echo -e "\033[4mabc\033[0m"` - Aliases +# Contributions +Contributions are welcomed, feel free to open a pull request. + +# License +This project is licensed under the GNU Public License v3.0. See [LICENSE](https://github.com/night0721/rush/blob/master/LICENSE) for more information. + ## Credits - [Tutorial - Write a shell in C](https://brennan.io/2015/01/16/write-a-shell-in-c/) - [dash](https://github.com/danishprakash/dash)