Skip to content

Instantly share code, notes, and snippets.

@EvanFreeman
Last active December 10, 2015 15:36
Show Gist options
  • Save EvanFreeman/96bf71f7227a9bd8bd64 to your computer and use it in GitHub Desktop.
Save EvanFreeman/96bf71f7227a9bd8bd64 to your computer and use it in GitHub Desktop.
This is a list of terminal commands that save me a lot of time.

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