Simple shell written in C.
Tanzeem Nazmee
- RUID: 226001687
- NetID: tmn98
GNU C manual used as reference.
make all
./shell
Then type one of the following commands, followed by an argument if required.
Change directory.
cd <directory>
Print working directory.
pwd
Exit the shell.
exit
Display help.
help
Create directory with path .
mkdir <directory>
Remove empty directory with path .
rmdir <directory>
List files in a directory , or the current directory if no argument is supplied.
ls <directory>
Copy a file
cp <source> <destination>
Move a file
mv <source> <destination>
Remove a file .
rm <file>