Created
February 16, 2025 23:04
-
-
Save hoehermann/0486da6685b9b4d192d184645e1063b7 to your computer and use it in GitHub Desktop.
Remove duplicate lines from bash_history
This file contains 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
#!/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