Skip to content

Instantly share code, notes, and snippets.

@snajpa
Created October 7, 2014 19:14
Show Gist options
  • Save snajpa/8fca56fdb46f77fdefc1 to your computer and use it in GitHub Desktop.
Save snajpa/8fca56fdb46f77fdefc1 to your computer and use it in GitHub Desktop.
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