Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 427 Bytes

ZSH_SNIPPETS.md

File metadata and controls

19 lines (13 loc) · 427 Bytes

ZSH SNIPPETS

Corrupted zsh_history

WSL crashed on me and left my zsh history in a complete state and failing to run commands.

Performing the following actions fixed my shell.

cd ~
mv .zsh_history .zsh_history_bad
strings .zsh_history_bad > .zsh_history
fc -R .zsh_history
rm ~/.zsh_history_bad

Resources

  • How to fix a corrupt zsh history file here