Skip to content

Instantly share code, notes, and snippets.

@meleyal
Created March 31, 2009 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meleyal/88360 to your computer and use it in GitHub Desktop.
Save meleyal/88360 to your computer and use it in GitHub Desktop.
Bash recipes
# Clear the screen
ctl + l
# Command history
up key to cycle through last commands
# Auto complete
Start typing a path/filename + tab to complete
Tab twice to see all options
# List files + meta data (including hidden files)
ls -la
# Jump to start of line
ctl + a
# Jump to end of line
ctl + e
# Stop / ignore the current command
ctl + c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment