Skip to content

Instantly share code, notes, and snippets.

@Lathanao
Last active March 10, 2025 08:39
Show Gist options
  • Save Lathanao/f0db18d89c0e7abbefbdbca26162e962 to your computer and use it in GitHub Desktop.
Save Lathanao/f0db18d89c0e7abbefbdbca26162e962 to your computer and use it in GitHub Desktop.
Clean zhistory script
################################################################################
##
## Description: Clean zhistory script by
## Trim all lines
## Keep only lines starting with ":" and not ending with "\"
## Written by: Tanguy SALMON
## Created on: 2025/03/10
## Last update: 2025/03/10
## License: MIT
##
################################################################################
def clean_zhistory():
file_path = '/Users/user/.zhistory'
try:
with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:
lines = f.readlines()
except:
try:
with open(file_path, 'r', encoding='latin-1') as f:
lines = f.readlines()
except:
with open(file_path, 'r', encoding='iso-8859-1') as f:
lines = f.readlines()
# Keep only lines starting with ":" and not ending with "\"
cleaned = [line.strip() + '\n' for line in lines
if line.startswith(':') and not line.strip().endswith('\\')]
# Backup original file
import shutil
shutil.copy2(file_path, file_path + '.bak')
# Write cleaned history
with open(file_path, 'w', encoding='utf-8') as f:
f.writelines(cleaned)
if __name__ == "__main__":
clean_zhistory()
# Created/Modified files during execution:
# /Users/user/.zhistory.bak
# /Users/user/.zhistory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment