2 lines
77 B
Bash
2 lines
77 B
Bash
grep -o -E '[a-zA-Z]{3,}' README.md | tr A-Z a-z | sort | uniq -c | sort -n
|
grep -o -E '[a-zA-Z]{3,}' README.md | tr A-Z a-z | sort | uniq -c | sort -n
|