Last active
April 3, 2018 03:34
-
-
Save timsully/2e620d24c073b4d809344896b83a30ec to your computer and use it in GitHub Desktop.
An introduction to keys used in the terminal for beginners and for reference
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Control + A = takes you to the very beginning of the line | |
Control + E = takes you to the very end of the line | |
Press the up key = references previous commands in history | |
Press the down key = allows you to navigate back down towards other commands if you have already gone up | |
echo ~ = variable for the home directory of your computer | |
man pages = type in man "command" and a manual will display in the terminal telling you exactly what your command does | |
- press Q to quit the manual |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment