Sash is a basic Unix shell written in C. The purpose of this project is to help me learn how Unix shells work.
You will need the following installed on your computer:
git clone https://github.com/AgostonSzepessy/sash.git
mkdir sash_build
cd sash_build
cmake ../sash
make -j3
The binaries are placed into sash_build/bin
. To run sash
:
sash_build/bin/sash
To run the tests:
cd sash_build
ctest