bookmarks/top_words.sh
2018-09-03 09:47:54 +02:00

4 lines
131 B
Bash

#/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