feat: add script for word frequency analysis from a text file

This commit is contained in:
SquidSpirit 2025-08-18 11:25:26 +08:00
parent b76354feb3
commit 1d7f72e3e5

View File

@ -0,0 +1 @@
cat words.txt | tr -s '[:space:]' '\n' | sort | uniq -c | sort -nr | awk '{print $2, $1}'