Skip to content

Instantly share code, notes, and snippets.

@aidvu
Last active October 2, 2015 23:08
Show Gist options
  • Save aidvu/2342790 to your computer and use it in GitHub Desktop.
Save aidvu/2342790 to your computer and use it in GitHub Desktop.
Suffix Extractor
grep PERSON directory | tr '[A-Z]' '[a-z'] | cut -f 1 | awk '{ print substr( $0, length($0) - 0, length($0) ) }' | sort | uniq -c | sort -nr | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment