Bash vs PowerShell: line editing and history shortcuts compared

22 tasks · 16 with a documented equivalent in both · updated 2026-08-23

Bash (through readline) and PowerShell (through PSReadLine) both give you an editable command line with history search, but they inherit different conventions: readline's defaults are Emacs-style control and meta keys, PSReadLine's defaults are Windows text-editing keys. The table lines up the same editing action in both so the mapping is visible at a glance.

TaskBash / ShellPowerShell
Start of lineCtrl + AHome
End of lineCtrl + EEnd
Back one wordAlt + BCtrl + Left
Forward one wordAlt + FCtrl + Right
Delete word before cursorCtrl + WCtrl + Backspace
Delete word after cursorAlt + DCtrl + Delete
Delete to line startCtrl + UCtrl + Home
Delete to line endCtrl + KCtrl + End
UndoCtrl + _Ctrl + Z
RedoCtrl + Y
Clear screenCtrl + LCtrl + L
Reverse history searchCtrl + RCtrl + R
Forward history searchCtrl + SCtrl + S
Previous commandCtrl + PUp
Next commandCtrl + NDown
Last argument of previous command!$Alt + .
Repeat last command!!
Tab completionTab
Menu completionCtrl + Space
Cancel / interruptCtrl + C
PasteCtrl + YCtrl + V
Select allCtrl + A

The two biggest collisions are Ctrl + A and Ctrl + Y. In Bash, Ctrl + A jumps to the start of the line and Ctrl + Y pastes (yanks) the last killed text; in PowerShell, Ctrl + A selects all and Ctrl + Y is redo. Ctrl + R, Ctrl + S and Ctrl + L behave the same in both. History expansion (!! and !$) is a Bash-only syntax; PowerShell gets the last argument with Alt + . instead and has no one-keystroke 'repeat last command'. Our Bash table also covers file, text and process commands (ls, grep, ps, kill), which have PowerShell cmdlet equivalents but are outside this keystroke comparison.

PSReadLine can be switched to Emacs bindings with Set-PSReadLineOption -EditMode Emacs, after which most of the Bash column applies in PowerShell too. That is the easiest route for anyone who lives in both shells; the per-tool pages list everything else, including Bash's pipes and redirection and PowerShell's prediction and argument-selection keys.

Full references: Bash / Shell (52) · PowerShell (33) · all comparisons