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

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

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)