An open API service indexing awesome lists of open source software.

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++

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