Skip to content

Instantly share code, notes, and snippets.

@iamramahibrah
Created May 17, 2021 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamramahibrah/fb0557574a31cdb24acdbd54edec9d65 to your computer and use it in GitHub Desktop.
Save iamramahibrah/fb0557574a31cdb24acdbd54edec9d65 to your computer and use it in GitHub Desktop.
#!/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