Created
May 17, 2021 09:50
-
-
Save iamramahibrah/fb0557574a31cdb24acdbd54edec9d65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#********************************* | |
# Ramadhan ibrahim (https://ramadhanibrahim.com/) | |
# Licensed - https://unlicense.org/ | |
# Social Media: @iamramahibrah | |
# Fixes a corrupt .zsh_history file | |
#********************************** | |
function zsh() | |
{ | |
mv ~/.zsh_history ~/.zsh_history_bad | |
strings -eS ~/.zsh_history_bad > ~/.zsh_history | |
fc -r .zsh_history | |
rm ~/.zsh_history_bad | |
echo | |
echo -e "Success" | |
} | |
zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment