|
Kill current foreground process running in the terminal |
||
|
Suspend the current foreground process running in bash |
||
|
Close the bash shell |
|
Clear the screen |
||
|
Stop all output to the screen. This can be useful when running commands with very long output, but you don't want to stop the command with Ctrl + C |
||
|
Resume output to the screen after stopping it with Ctrl + S |
|
Go to the beginning of the line |
||
ou
|
|||
|
Go to the end of the line |
||
ou
|
|||
|
Go left one character |
||
|
Go right one word |
||
|
Go right one character |
||
|
Move between the beginning of the line and the current position of the cursor. This allows you to change something and return to original position |
|
Delete the character under the cursor |
||
ou
|
|||
|
Delete all characters after the cursor on the current line |
||
|
Delete the character before the cursor |
||
ou
|
|
Swap the current word with the previous word |
||
|
Swap the last two characters before the cursor with each other |
||
|
Undo your last key press. It can be used multiple times |
||
|
Swap the last to words before the cursor |
|
Cut the word before the cursor and add it to the clipboard |
||
|
Cut the part of the line after the cursor and add it to the clipboard |
||
|
Cut the part of the line before the cursor and add it to the clipboard |
||
|
Paste the last thing you cut from the clipboard. The y here stands for “yank” |
|
Capitalize every character from the cursor to the end of the current word, converting the characters to upper case |
||
|
Uncapitalize every character from the cursor to the end of the current word, converting the characters to lower case |
||
|
Capitalize the character under the cursor. Your cursor will move to the end of the current word. |
|
Automatically complete the file, directory, or command you’re typing |
|
Go to the previous command in the command history |
||
ou
|
|||
|
Go to the next command in the command history |
||
ou
|
|||
|
Revert any changes to a command you've called from your history, if you've edited it |
||
|
Recall the last command matching the characters you provide. Press this shortcut and start typing to search your bash history for a command |
||
|
Run a command you found with Ctrl + R |
||
|
Leave history searching mode without running a command |