Project 2: Shell Builtins
Commands Implemented
echo
Command allows for a string to be printed on the terminal
ls
Lists all files/directories within scope
mkdir
Makes a new file or directory
pwd
Prints working directory onto the terminal
rm
Removes a designated file or directory
Commands Necessary to Run Application
Compile & Run Executable
go build main.go
./main
OR
Compile and Run Directly
go run main.go
Demo

Abel Hernandez