A collection of programs written in C/C++ which emulate various algorithms used in operating systems.
| Command | Result |
|---|---|
| pwd | print working directory |
| cd [directory name] | change directory |
| jobs | list all currently running processes and their ids |
| kill [process id] | force quit a specific process |
| fg [process id] | force a process to run in foreground |
| bg [process id] | force a process to run in background |
| [executable file] | run process in foreground |
| [executable file] & | run process in background |
| quit | exit shell |