-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzsh_history_fix.sh
executable file
·20 lines (17 loc) · 1.04 KB
/
zsh_history_fix.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# **************************************************************************** #
# #
# ::: :::::::: #
# zsh_history_fix :+: :+: :+: #
# +:+ +:+ +:+ #
# By: bahaas <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/01/04 13:21:28 by bahaas #+# #+# #
# Updated: 2021/01/04 13:21:38 by bahaas ### ########.fr #
# #
# **************************************************************************** #
#!/usr/bin/bash
# Fixes a corrupt .zsh_history file
mv ~/.zsh_history ~/.zsh_history_bad
strings ~/.zsh_history_bad > ~/.zsh_history
fc -R ~/.zsh_history
rm ~/.zsh_history_bad