A repository that holds usage notes and commands for using the Hyper terminal
- Hyper is a JS-based terminal, it can be downloaded from
https://hyper.is/. - Once downloaded, Git bash can be integrated with it (download and install Git from
https://git-scm.com/downloads). - Possible commands (for Windows, all normal terminal commands):
ls- list items in the current directory.mkdir directoryName- create a new directory with thedirectoryNamename in the current directory.touch fileName1.fileName1Extension fileName2.fileName2Extension- creates the specified files in the current directory. Ex.:touch index.html app.js text.txt--> will create the 3 specified files in the current directory.cd- change directory, navigate to a specified directory, use theTABkey for autocompletion.cd ..- navigate to the previous directory in the path.cd ../../..- navigate 3 levels back from the current directory.cd ~- navigate to the home directory.rm -r directoryName- remove directory with all its contents.rm fileName- remove file.- All typical commands that can be used in PS/BASH/Win Terminal can also be used in Hyper, checkout