https://github.com/mohitkyadav/shell
A noob terminal for linux, created in C++
https://github.com/mohitkyadav/shell
Last synced: 3 months ago
JSON representation
A noob terminal for linux, created in C++
- Host: GitHub
- URL: https://github.com/mohitkyadav/shell
- Owner: mohitkyadav
- Created: 2017-08-30T19:22:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-18T20:07:18.000Z (about 3 years ago)
- Last Synced: 2025-01-26T14:48:49.374Z (5 months ago)
- Language: C++
- Homepage:
- Size: 183 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shell
# How to run
`g++ -o shell shell.cpp``./shell`
# Documentation
## *cd dir_name*
dir_name is the path of the new working directory.
## *ls*
ls lists all the files and directories in the current directory## *mkdir dir_name*
Creates a new directory named dir_name in current directory## *mkdir -p path*
Creates a new directory in the given path## *mkdir -v dir_name*
Creates a new directory named dir_name in current directory and prints "dir_name created" on the console window.## *rm -rf dir_name*
Deletes the directory named dir_name## *exit*
Exits the console