bookmarks/top_words.sh
2018-09-07 12:25:33 +02:00

4 lines
157 B
Bash
Executable File

#/usr/bin/env bash
BASEDIR=$(dirname "$0")
grep -o -E '[a-zA-Z]{3,}' "$BASEDIR/README.md" | tr A-Z a-z | grep -vwFf stopwords.txt | sort | uniq -c | sort -n