Skip to content

Instantly share code, notes, and snippets.

@rg443a
Created April 23, 2021 11:24
Show Gist options
  • Save rg443a/e8a3cf1ffaafe474d6fa619682869835 to your computer and use it in GitHub Desktop.
Save rg443a/e8a3cf1ffaafe474d6fa619682869835 to your computer and use it in GitHub Desktop.
bash history remove duplicates
tac $HISTFILE | awk '!x[$0]++' | tac | sponge $HISTFILE
awk '!x[$0]++' ~/.bash_history
tac ~/.bash_history | awk '!x[$0]++' | tac
# https://medium.com/@dblume/have-only-unique-lines-in-your-bash-history-941e3de68c03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment