Skip to content

Instantly share code, notes, and snippets.

@itsamoreh
Created November 1, 2018 13:52
Show Gist options
  • Save itsamoreh/234fde79ac2252d22805c9db51fc87a7 to your computer and use it in GitHub Desktop.
Save itsamoreh/234fde79ac2252d22805c9db51fc87a7 to your computer and use it in GitHub Desktop.
Sort bash / zsh command history and order by frequency
history | cut -c 8- | sort | uniq -c | sort -nr
Copy link

ghost commented Oct 13, 2021

Nice. I'm using it to decide to which commands to give the shortest aliases!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment