4 lines
70 B
Bash
4 lines
70 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
grep -Roh '\w*' "$1" | sort | uniq -c | sort -nr
|