Minibash
🐚 Minibash is a simple implementation for the bash shell, it includes pipes, redirections, environment variables and some of the builtin commands
Install / Use
/learn @fortytwobytes/MinibashREADME
Setup
- Install readline library and some extra dependencies
sudo apt-get install lib32readline8 lib32readline-dev make git gcc - Clone the repository
git clone https://github.com/fortytwobytes/minibash && cd minibash - Compile and run the program
- with Cmake
mkdir -p build && (cd build && cmake .. && make && ./minibash) - with Makefile
make && ./minibash
- with Cmake
- If you have docker simply run
docker compose run --rm minibash
