add script to list top words

This commit is contained in:
MorganGeek 2018-08-30 12:22:02 +02:00
parent 6e8a3f0c06
commit 69b04b5409

1
top_words.sh Normal file
View File

@ -0,0 +1 @@
grep -o -E '[a-zA-Z]{3,}' README.md | tr A-Z a-z | sort | uniq -c | sort -n