Last active
May 30, 2017 13:24
-
-
Save rubenRP/2111987609cd6effb4cff147d2027f39 to your computer and use it in GitHub Desktop.
Commands for terminal
This file contains hidden or 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
Stop using the arrow keys and navigate the command line more quickly with | |
ctrl+A: moves to the start of the line | |
ctrl+E: moves to the end of the line | |
ctrl+B: move back one character | |
ctrl+F: move forward one character | |
esc+B: move back one word | |
esc+F: move forward one word | |
ctrl+U: delete from the cursor to the beginning of the line | |
ctrl+K: delete from the cursor to the end of the line | |
ctrl+W: delete from the cursor to the beginning of the current word |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment