Chimera

C/C++ implementation of basic linux commands

Stars
6

Chimera

Made in C++ with ❤️

Following is the OS mini project 
a command line interpreter we like to call
Chimera

Chimera has following functions:

  • mkdir
  • cd
  • ls
  • rmdir
  • pwd
  • exit

Below are the code implementations of the Repo:

navigate to the cloned repo

  • Compiling the test file:
   g++ -o test test.cpp
  • Running the test file
   ./test
  • Making a new directory:
  mkdir filename
  • Removing a directory:
rmdir filename 
  • Listing out files:
ls
  • Changing current directory:
cd filename
  • Printing the current directory:
pwd
  • Exiting the terminal
exit

Credits: