This project implements a simple Command Line Interface in C.
- dir → list directory contents
- create → create file
- input → append text
- rename → rename file
- del → delete file
- cd → change directory
- help → show commands
- exit → quit shell
gcc -Wall -std=c11 minishell.c -o minishell
./minishell
- POSIX system calls
- open / write / close
- rename / unlink
- opendir / readdir
- chdir
- Process working directory
- Basic command parsing
I.Temuulen