Skip to content

Instantly share code, notes, and snippets.

@alperyilmaz
Last active November 17, 2016 13:21
Show Gist options
  • Save alperyilmaz/fe6812d98f21d1734012dc10a5a484d1 to your computer and use it in GitHub Desktop.
Save alperyilmaz/fe6812d98f21d1734012dc10a5a484d1 to your computer and use it in GitHub Desktop.
most frequent 5 words in Emma
$ cat emma.txt | tr A-Z a-z | tr -sc "a-z0-9" "\n" | sort | uniq -c | sort -nr | head -5
5242 to
5209 the
4898 and
4300 of
3192 i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment