Skip to content

Instantly share code, notes, and snippets.

@hoehermann
Created February 16, 2025 23:04
Show Gist options
  • Save hoehermann/0486da6685b9b4d192d184645e1063b7 to your computer and use it in GitHub Desktop.
Save hoehermann/0486da6685b9b4d192d184645e1063b7 to your computer and use it in GitHub Desktop.
Remove duplicate lines from bash_history
#!/usr/bin/env python3
import fileinput
import sys
# TODO: buffer all lines, keep most recent (not first occurrence)
o = []
for line in fileinput.input():
if (line in o):
continue
if ("of=/dev/sd" in line):
continue
if ("mkfs" in line):
continue
o.append(line)
sys.stdout.write(line)
sys.stderr.write('.')
sys.stderr.write('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment