| Both sides previous revision Previous revision Next revision | Previous revision |
| linux:general_bash-ery [2026/02/11 23:08] – [General Bash-ery] mgupton | linux:general_bash-ery [2026/02/18 20:47] (current) – [General Bash-ery] mgupton |
|---|
| * ''Ctrl + a'', move to the beginning of the line | * ''Ctrl + a'', move to the beginning of the line |
| * ''Ctrl + e'', move to the end of the line | * ''Ctrl + e'', move to the end of the line |
| | |
| | * ''Ctrl + b'', move back one character |
| | * ''Ctrl + f'', move forward one character |
| | |
| * ''Ctrl + k'', Cut the Line after the cursor to the clipboard. | * ''Ctrl + k'', Cut the Line after the cursor to the clipboard. |
| * ''Ctrl + u'', Cut the Line before the cursor to the clipboard. | * ''Ctrl + u'', Cut the Line before the cursor to the clipboard. |
| * ''Ctrl + h'', delete character before the cursor (backspace) | * ''Ctrl + h'', delete character before the cursor (backspace) |
| * ''Alt/Meta + b'', ''Alt + f'', move back and forward a word at a time | * ''Alt/Meta + b'', ''Alt + f'', move back and forward a word at a time |
| * ''Ctrl + d'', delete the word behind the cursor | * ''Ctrl + w'', delete the word before the cursor |
| | * ''Alt + d'', delete the word after the cursor |
| * ''Alt/Meta + w'', delete the word in front of the cursor | * ''Alt/Meta + w'', delete the word in front of the cursor |
| | |
| | * ''Ctrl + _'' or ''Ctrl + Shift + _'', undo last change |
| |
| === Command Line History Search === | === Command Line History Search === |