qsh — A small, lightweight, command interpreter
This is the rewrite of quick terminal, quick terminal server edition, and QTerminal.
Quick Shell aims at replacing bash
or zsh
with a smaller and lighter program and follows
the suckless philosophy. (note this project is not
associated with suckless).
This software is in a working alpha state. The software may not work and may have drastic changes in the future.
This code (see exception) is licensed under the MIT license. See 'LICENSE' for details.
Note, the source code for linenoise-mob is also included in this repo which is under the BSD 2-Clause "Simplified" License. See src/libs/linenoise/LICENSE for more details.
This program allows a couple of compiling options.
The simplest way is to compile by make
make gnu
: makes the user interface use GNU readlinemake tiny
: makes the UI only use fgets (aka no line editing, like sh(1))make debug
: adds debugging symbols to the program, along with verbose outputmake static
: statically links program (note: this should be done only with musl clib)make
: makes the UI use the linenoise-mob librarymake install
: creats qsh with linenoise and moves qsh to the /usr/bin file and installs the manpagemake uninstall
: deletes /usr/bin/qsh and the man file from the system
- NO_COLOR (
-DNO_COLOR
) : disables color in the prompt ONLY
Take a look at the ROADMAP for what still needs to get done for the next version.
Then:
- Fork the repository
- Compile
- Test
- Make changes
- Test again
- After all of that then submit a merge/pull request