Maksh is my first C++ project — a simple terminal for basic tasks.
It’s designed to help beginners understand input/output, loops, and basic commands in C++.
Sometimes it even improves itself with new features! 😎
- Custom commands:
hi
,lol
,whoami
,help
,exit
,info
,echo
- Infinite loop until user decides to quit
- Simple and clean terminal interface
- Beginner-friendly and easy to understand
- Clone the repository:
git clone https://github.com/maxcoder-dev/maksh.git
- Compile the project:
g++ main.cpp -o maksh # on Linux/Mac g++ main.cpp -o maksh.exe # on Windows
- Run the terminal: ./maksh
Everything is ready!