0.1.0 • Published 7 years ago

uindows-cli v0.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

Uindos

Unix commands on windows

## Install

  $ npm install uindos-cli --global

or...

  $ yarn global add uindos-cli
  • ### Cat Output the standard cat output ( Read the file ).

      $ cat <file>  
      # Return the standard cat but on windows :)

    More info here

  • ### Mkdir Create new folder and the relative path ( as mkdir -p ).

      $ mkdir <folder>
      # Create new folder to path as `mkdir -p`

    More info here

  • ### Touch Create new file

      $ touch <path to file>  
      # Create new file

    More info here

  • ### Ls Output files in folder or in the local path ( ./ )

      $ ls [folder]  
      # Return the standard cat but on windows :)

    More info here