Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nyxwulf
Created May 19, 2013 20:51
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 nyxwulf/5608955 to your computer and use it in GitHub Desktop.
Save nyxwulf/5608955 to your computer and use it in GitHub Desktop.
history \
| sed "s/^[0-9 ]*//" \
| perl -pe 's/ *\| */\n/g' \
| gawk '{counts[$1] += 1}
END { for (x in counts) { print counts[x],x}}' OFS="\t" \
| column -t \
| sort -k 1,1nr \
| head -100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment