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

https://github.com/kralloie/wunixsh

Command shell from scratch for Windows using Unix syntax for commands.
https://github.com/kralloie/wunixsh

c cli shell unix-shell windows

Last synced: 9 months ago
JSON representation

Command shell from scratch for Windows using Unix syntax for commands.

Awesome Lists containing this project

README

          

## Available commands:
- ```ls``` Lists files in current or specified directory.
- ```cd``` Change directory.
- ```mkdir``` Create directory.
- ```rm``` Remove file or directory.
- ```clear``` Clear terminal output.
- ```touch``` Create file.
- ```echo``` Prints argument as output in terminal.
- ```cat``` Reads file and output the content on terminal.
- ```history``` Shows the history of used commands in current session.
- ```cp``` Copy file or directory.
- ```mv``` Move file or directory.
- ```pwd``` Prints current working directory.
- ```shutdown``` Turns the computer off.
- ```reboot``` Reboots the computer.
- ```df``` Show disks and usage.
- ```ipconfig``` Show ip network data.
- ```ping``` Send a request to the specified address and shows ping.
- ```ps``` Show list of processes.
- ```kill``` Kill process with the specified PID.
- ```pidof``` Search PID with specified name.
- ```find``` Search specified file and output the path to it if exists.

## Features:
- __Command History__
- __Command Chaining__
- __Filename Auto Completion__