Skip to content

Instantly share code, notes, and snippets.

@cupakromer
Last active August 29, 2015 14:03
Show Gist options
  • Save cupakromer/5037f32312e75413e645 to your computer and use it in GitHub Desktop.
Save cupakromer/5037f32312e75413e645 to your computer and use it in GitHub Desktop.
Command Line Tricks

Command Line Tricks

  • !! Repeat Previous Command
  • !-1 Repeat Previous Command
  • !-2 Repeat 2nd Previous Command
  • !ps Execute Previous Command STARTING WITH ps
  • !^ First Argument From Previous Command
  • !:2 2nd Argument From Previous Command
  • !$ Last Argument From Previous Command
  • !!:$ Last Argument From Previous Command
  • !-2:$ Last Argument From 2nd Previous Commands

Jump Commands

  • ctrl+x ctrl+e Edit the current command in editor
  • ctrl+k Kill to end of line
  • ctrl+u Clear line
  • ctrl+y Yank it back
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment