This file contains hidden or 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
#!/bin/bash | |
# 0. Shortcuts. | |
CTRL+A # move to beginning of line | |
CTRL+E # moves to end of line | |
CTRL+G # aborts the current editing command and ring the terminal bell | |
CTRL+K # deletes (kill) forward to end of line | |
CTRL+L # clears screen and redisplay the line | |
CTRL+R # searches backward |