๐ Boost your productivity with these essential shortcuts!
| ๐ Shortcut | ๐น Description |
|---|---|
| Ctrl + C ๐ | Cancel/terminate the running process |
| Ctrl + D ๐ช | Logout or send EOF (End Of File) |
| Ctrl + L ๐งน | Clear the terminal screen |
| Ctrl + S ๐ | Pause terminal output (freeze scrolling) |
| Ctrl + Q |
Resume terminal output |
| Ctrl + Z ๐ค | Suspend (background) current process |
| Ctrl + A โฌ ๏ธ | Move cursor to the beginning of the line |
| Ctrl + E โก๏ธ | Move cursor to the end of the line |
| Ctrl + U โ๏ธ | Delete text from cursor to line start |
| Ctrl + K โ๏ธ | Delete text from cursor to line end |
| Ctrl + W โ๏ธ | Delete the word before the cursor |
| Ctrl + Y ๐ | Paste (yank) the last deleted text |
| Ctrl + R ๐ | Reverse search command history |
| Ctrl + G โ | Exit history search mode |
| ๐ Shortcut | ๐น Description |
|---|---|
| Alt + F โก๏ธ | Move forward one word |
| Alt + B โฌ ๏ธ | Move backward one word |
| Alt + D โ๏ธ | Delete the word after the cursor |
| Alt + Backspace โ๏ธ | Delete the word before the cursor |
| Shift + Page Up โฌ๏ธ | Scroll up in the terminal |
| Shift + Page Down โฌ๏ธ | Scroll down in the terminal |
| ๐ Shortcut | ๐น Description |
|---|---|
| Ctrl + Shift + T ๐ | Open a new terminal tab |
| Ctrl + Shift + W โ | Close the current terminal tab |
| Ctrl + Shift + N ๐ | Open a new terminal window |
| Alt + Tab ๐ | Switch between applications |
| Alt + Shift + Tab ๐ | Switch between apps (reverse order) |
| Super + Left |
Snap window to the left |
| Super + Right |
Snap window to the right |
| Super + Up ๐ผ | Maximize the window |
| Super + Down ๐ฝ | Minimize (or restore) the window |
๐น Note: The โSuperโ key is usually the Windows or Command key.
| ๐ Shortcut | ๐น Description |
|---|---|
| Ctrl + N ๐ | Open a new file manager window |
| Ctrl + T ๐ | Open a new tab in the file manager |
| Ctrl + W โ | Close the current tab or window |
| Ctrl + Shift + N ๐ | Create a new folder |
| F2 โ๏ธ | Rename the selected file/folder |
| Delete ๐๏ธ | Move file/folder to Trash |
| Shift + Delete |
Permanently delete the file/folder |
| Ctrl + X โ๏ธ | Cut the selected file/folder |
| Ctrl + C ๐ | Copy the selected file/folder |
| Ctrl + V ๐ฅ | Paste the file/folder |
| Ctrl + A โ | Select all files/folders |
| Ctrl + Shift + T ๐ | Reopen the last closed tab (if supported) |
๐น Note: Shortcuts may vary in different file managers like GNOME Files, Dolphin, Thunar.
| ๐ Shortcut | ๐น Description |
|---|---|
| Ctrl + T ๐ | Open a new tab |
| Ctrl + W โ | Close the current tab |
| Ctrl + Shift + T ๐ | Reopen the last closed tab |
| Ctrl + Tab โฉ | Switch to the next tab |
| Ctrl + Shift + Tab โช | Switch to the previous tab |
| Alt + F4 โ | Close the active application |
You can create custom shortcuts for commands using aliases:
alias ll='ls -lah' # Detailed file list
alias gs='git status' # Git status shortcut
alias c='clear' # Clear terminalTo make these permanent, add them to ~/.bashrc or ~/.zshrc and run:
source ~/.bashrc # (or source ~/.zshrc)To create a shortcut (symbolic link) to a file or directory:
ln -s /path/to/original /path/to/shortcutExample:
ln -s /var/www/html ~/mywebThis creates myweb as a shortcut to /var/www/html.