Skip to content

Instantly share code, notes, and snippets.

@rubenRP
Last active May 30, 2017 13:24
Show Gist options
  • Save rubenRP/2111987609cd6effb4cff147d2027f39 to your computer and use it in GitHub Desktop.
Save rubenRP/2111987609cd6effb4cff147d2027f39 to your computer and use it in GitHub Desktop.
Commands for terminal
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