https://github.com/rawnly/uindows-cli
Unix commands on windows
https://github.com/rawnly/uindows-cli
command-line commands js nodejs unix windows
Last synced: about 1 month ago
JSON representation
Unix commands on windows
- Host: GitHub
- URL: https://github.com/rawnly/uindows-cli
- Owner: rawnly
- Created: 2017-02-02T20:30:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-05T16:57:10.000Z (over 9 years ago)
- Last Synced: 2025-05-19T11:45:57.806Z (about 1 year ago)
- Topics: command-line, commands, js, nodejs, unix, windows
- Language: JavaScript
- Size: 3.25 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Uindows
> Unix commands on windows
## Install
```bash
$ npm install uindows-cli --global
```
or...
```bash
$ yarn global add uindows-cli
```
## Usage
- ### Cat
Output the standard `cat` output ( Read the file ).
```bash
$ cat
# Return the standard cat but on windows :)
```
More info [here][cat]
- ### Mkdir
Create new folder and the relative path ( as `mkdir -p` ).
```bash
$ mkdir
# Create new folder to path as `mkdir -p`
```
More info [here][mkdir]
- ### Touch
Create new file
```bash
$ touch
# Create new file
```
More info [here][touch]
- ### Ls
Output files in folder or in the local path ( `./` )
```bash
$ ls [folder]
# Return the standard cat but on windows :)
```
More info [here][ls]
---
Coded with love by @Rawnly
[cat]: https://wikipedia.org/wiki/Cat_(Unix)
[mkdir]: https://wikipedia.org/wiki/Mkdir
[touch]: https://wikipedia.org/wiki/Touch_(Unix)
[ls]: https://wikipedia.org/wiki/Ls_(Unix)