Created
October 7, 2014 19:14
-
-
Save snajpa/8fca56fdb46f77fdefc1 to your computer and use it in GitHub Desktop.
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
histogram-occurences-from-unsorted-list() { # cat unsorted-list-of-items | histogram | |
sort|uniq -c|sort -rn|head -20|awk '!max{max=$1;}{r="";i=s=60*$1/max;while(i-->0)r=r"#";printf "%15s %5d %s %s",$2,$1,r,"\n";}' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment