Must Know Shell Keybindings 🐧🐚
In this post I'll be writing about the most useful keybindings for the bash and zsh shells. *nix systems generally ship with the Bourne again shell or bash and zsh or Z shell is also quite popular among developers as it provides some very powerful features. Some of these shortcuts may work with other shells too.
# Shell Keybindings
## Navigation 🚀
Alt + f/b - Move cursor to previous/next word
Ctrl + a/e - Move cursor to beginning/end of command
Ctrl + xx - Toggle between the start of line and current cursor position
Ctrl + a/e - Move cursor to beginning/end of command
Ctrl + xx - Toggle between the start of line and current cursor position
---
## Editing ✏️
Ctrl + x,e - Open command in editor
Ctrl + k - Cut till end
Ctrl + u - Delete whole line (zsh)/ cut until beginning (bash)
Alt + w - Delete until beginning (zsh)
Alt + l/u - Lowercase/Uppercase word
Alt + c - Capitalize word
Ctrl + w - Cut previous word
Alt + Del - Delete previous word
Alt + d - Delete next word
Alt +. or !$ - Previous commands last arguement
!* - All arguments of previous command
Alt + t - Swap current word with previous
Ctrl + t - Swap the last two characters before the cursor (typo). <br>
Esc + t - Swap the last two words before the cursor
Ctrl + y - Paste
Ctrl + _ - Undo
Alt + r - Cancel the changes, revert
Ctrl + k - Cut till end
Ctrl + u - Delete whole line (zsh)/ cut until beginning (bash)
Alt + w - Delete until beginning (zsh)
Alt + l/u - Lowercase/Uppercase word
Alt + c - Capitalize word
Ctrl + w - Cut previous word
Alt + Del - Delete previous word
Alt + d - Delete next word
Alt +. or !$ - Previous commands last arguement
!* - All arguments of previous command
Alt + t - Swap current word with previous
Ctrl + t - Swap the last two characters before the cursor (typo). <br>
Esc + t - Swap the last two words before the cursor
Ctrl + y - Paste
Ctrl + _ - Undo
Alt + r - Cancel the changes, revert
---
## Process 📊
Ctrl + l - Clear screen
Ctrl + c - Interrupt/Kill
Ctrl + d - Close current shell
Ctrl + z - Background/Foreground job
Ctrl + c - Interrupt/Kill
Ctrl + d - Close current shell
Ctrl + z - Background/Foreground job
---
## History ⏳
Ctrl + r - History search
Ctrl + s - Go back to the next most recent command
^abc^def - Run previous command, replacing abc with def
Ctrl + s - Go back to the next most recent command
^abc^def - Run previous command, replacing abc with def
---
## Modes 🕹️
Ctrl +x,v - vi mode (zsh)
set -o vi - Vi mode
set -o vi - Vi mode
If you know any other useful keybindings, feel free to comment below.
GitHub gist here.
GitHub gist here.
Comments
Post a Comment