Chill is a lightweight Unix-like shell with a calm emoji prompt. It supports built-in commands, parallel execution, and output redirection.
- Interactive mode with emoji prompt
- Batch mode (
./chill file.txt) - Built-in commands:
exit,cd,path - Output redirection:
> - Parallel execution:
& - Simple error handling: prints
An error has occurred
git clone https://github.com/your-username/chill.git
cd chill
Compile
gcc chill.c -o chill
Run Interactive
./chill
Run Batch
./chill commands.txt
Example
π chill> pwd
/home/user
π chill> ls > files.txt
π chill> cd ~
π chill> ls & pwd
Notes
Default path: /bin
No piping, input redirection, or environment expansion