Last active
August 29, 2015 13:57
-
-
Save natbusa/9640991 to your computer and use it in GitHub Desktop.
word count: linux
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
cat lorem.txt | tr [:upper:] [:lower:] | sed -E 's/[^[:alpha:]]+/\n/g' | sort | uniq -c | | awk '{ print($2,"\t",$1) }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment