Cish is a shell project I'm challenging myself to do in my journey of learning the Go programming language.
As I'm still working on it, I haven't made the binary file available yet, but you can clone the repository, build the code, and execute it.
Note: Make sure you have Go (Golang) installed.
To execute the project:
- Build the source code
make build
This command will build the source code and put it in a bin
folder
- Now you can execute it
./bin/cish
- Or you can simply type
make run
This will build the source code and run it for you.
make test