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.
- Host: GitHub
- URL: https://github.com/kralloie/wunixsh
- Owner: kralloie
- License: gpl-3.0
- Created: 2024-09-29T06:19:11.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-15T13:21:06.000Z (over 1 year ago)
- Last Synced: 2025-02-02T23:14:30.157Z (over 1 year ago)
- Topics: c, cli, shell, unix-shell, windows
- Language: C
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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__