Skip to content

Instantly share code, notes, and snippets.

@ahmadrosid
Last active December 22, 2019 03:27
Show Gist options
  • Save ahmadrosid/7600c4668754c3d7ad1ff1ae085e5d83 to your computer and use it in GitHub Desktop.
Save ahmadrosid/7600c4668754c3d7ad1ff1ae085e5d83 to your computer and use it in GitHub Desktop.

Show 5 most used terminal command

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 -n 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment