Last active
December 15, 2015 01:49
-
-
Save octosteve/5182375 to your computer and use it in GitHub Desktop.
List of bash Navigations I find helpful
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
Tab Completion: Press Tab to finish commands/paths | |
Moving around | |
Control + a: Go to the beginning of the line | |
Control + e: Go the the end of the line | |
Option + b: Move back one word | |
Option + f: Move forward one word | |
Deleting | |
Control + k: Delete from current cursor position | |
Control + w: Delete last word typed | |
Control + u: Delete last line typed | |
Control + y: Paste last deleted item | |
Clean up | |
Control + l: Clear the screen | |
Command + k: Reset the screen | |
Search | |
Control + r: Search history backwards | |
Program Termination | |
Control + c: Break out of running program |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment