A Command Line Interpreter made in C++ which supports commands like quit, remove, rename, rmdir, echo, out, zip, unzip.
Making our own Command Line Interpreter In this problem you have to develop a small-scale command line interpreter. Your CLI should support the following commands:
-
quit: Exit your CLI
-
remove file_name: removes the given file name. (Hint: Use remove C/C++βs built-in function remove() ).
-
rename old_name new_name: rename the given file/folder. (Hint: Use C/C++βs built-in function rename() ).
-
rmdir directory_name: remove directory. Assume that the directory is always empty. You do not have to handle the deletion of a directory that is not empty.
-
echo βdataβ optional_file_name: Whatever data is given in the quotation marks is written to the given file. If the file name is not given, the data in string is simply printed on the screen.
-
out -l file_name_1 file_name2 file_name_3: The contents of given files are printed one by one on the screen. When the contents of one file are printed, user is asked to press some key to continue. User must enter at least 1 file name. (If the user has specified -l, then the file contents are printed line by line, and the user is asked to press some key to continue after each line.)
-
zip destination file_name: zips the given file/folder. (Hint: Use system() function. system(βtar cvf β+ destination+β β+ file_name) ).
-
unzip file_name: unzips the given zipped file. Use system() in this case, too.
You can only use system() in zip/unzip command. You must not use it for any other command.
Download the Code folder and using Ubuntu Bash or Windows or Linux Terminal, change current working directory to the Code folder. Then on the terminal, type
./cli.out
You can get in touch with me on my LinkedIn Profile:
You can also follow my GitHub Profile to stay updated about my latest projects:
If you liked the repo then kindly support it by giving it a star β and share in your circles so more people can benefit from the effort.
If you find any bugs, have suggestions, or face issues:
- Open an Issue in the Issues Tab to discuss them.
- Submit a Pull Request to propose fixes or improvements.
- Review Pull Requests from other contributors to help maintain the project's quality and progress.
This project thrives on community collaboration! Members are encouraged to take the initiative, support one another, and actively engage in all aspects of the project. Whether itβs debugging, fixing issues, or brainstorming new ideas, your contributions are what keep this project moving forward.
With modern AI tools like ChatGPT, solving challenges and contributing effectively is easier than ever. Letβs work together to make this project the best it can be! π
Copyright (c) 2018-present, harismuneer
Hey there, I'm Haris Muneer π¨π»βπ»
-
πΈοΈ Founder of Cyfy Labs: At Cyfy Labs, we provide advanced social media scraping tools to help businesses, researchers, and marketers extract actionable data from platforms like Facebook, Instagram, and X (formerly Twitter). Our tools support lead generation, sentiment analysis, market research, and various other use cases. To learn more, visit: www.cyfylabs.com
-
π Open Source Advocate: Iβm passionate about making tech accessible. Iβve open-sourced several projects that you can explore on my GitHub profile and on the Open Source Software PK page.
-
π« How to Reach Me: You can learn more about my skills/work at LinkedIn. You can also reach out via email for collaboration or inquiries. For Cyfy Labs related queries, please reach out through the company website.