Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 362 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 362 Bytes

smallsh

smallsh is a basic shell interface written in C.

Commands cd, exit, status and input/output redirection are built-in, while other commands are handled by spawning a child process to execute execvp() and perform the desired action.

To compile

Use the provided makefile and run: make sh

To run

Use the provided makefile and run: make runSh