feat: add script for word frequency analysis from a text file
This commit is contained in:
parent
b76354feb3
commit
1d7f72e3e5
1
192_word_frequency/script.sh
Normal file
1
192_word_frequency/script.sh
Normal file
@ -0,0 +1 @@
|
||||
cat words.txt | tr -s '[:space:]' '\n' | sort | uniq -c | sort -nr | awk '{print $2, $1}'
|
Loading…
x
Reference in New Issue
Block a user