Created
March 31, 2009 19:28
-
-
Save meleyal/88360 to your computer and use it in GitHub Desktop.
Bash recipes
This file contains 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
# 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