An open API service indexing awesome lists of open source software.

https://github.com/tarball0/boring-shell

The most basic shell in existence
https://github.com/tarball0/boring-shell

c inline-assembly shell systems-programming

Last synced: 3 days ago
JSON representation

The most basic shell in existence

Awesome Lists containing this project

README

          

# `boring-shell`
A very barebones, basic CLI shell.
I made this shell to teach myself systems programming and gcc inline assembly. Safe to say i learnt a lot.

## Running
### Install the gnu readline library
Arch Based:
```sh
sudo pacman -S readline
```
Debian Based:
```sh
sudo apt-get install libreadline6 libreadline6-dev
```
### Run make
(with sudo because it compiles to `/usr/local/bin/boring`)
``` sh
sudo make
```
### Then just run it.
run `boring` :)

## ?
what on earth even is POSIX?