Skip to content

Instantly share code, notes, and snippets.

@vodolaz095
Created October 12, 2016 01:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vodolaz095/e32cd4fd8418e321facf3b0d0a8ed867 to your computer and use it in GitHub Desktop.
Save vodolaz095/e32cd4fd8418e321facf3b0d0a8ed867 to your computer and use it in GitHub Desktop.
Show top 10 Shell commands you are using
#/bin/sh
history | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment