Skip to content

Instantly share code, notes, and snippets.

@Pk13055
Created October 6, 2017 06:15
Show Gist options
  • Save Pk13055/7cfcf71a74ab803326888fc617a240b6 to your computer and use it in GitHub Desktop.
Save Pk13055/7cfcf71a74ab803326888fc617a240b6 to your computer and use it in GitHub Desktop.
Fix zsh history corrupt
#!/bin/bash
cd ~;
mv .zsh_history .zsh_history_bad;
strings .zsh_history_bad > .zsh_history;
fc -R .zsh_history;
@Pk13055
Copy link
Author

Pk13055 commented Oct 6, 2017

chmod 755 zsh_history_fix.sh 
./zsh_history_fix.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment