script: ignore stop words in top_words
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
#/usr/bin/env bash
|
||||
BASEDIR=$(dirname "$0")
|
||||
grep -o -E '[a-zA-Z]{3,}' "$BASEDIR/README.md" | tr A-Z a-z | sort | uniq -c | sort -n
|
||||
grep -o -E '[a-zA-Z]{3,}' "$BASEDIR/README.md" | tr A-Z a-z | grep -vwFf stopwords.txt | sort | uniq -c | sort -n
|
||||
|
Reference in New Issue
Block a user