We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdea1d0 commit 1f24fa5Copy full SHA for 1f24fa5
192-word-frequency.sh
@@ -0,0 +1,2 @@
1
+# Read from the file words.txt and output the word frequency list to stdout.
2
+cat words.txt| tr -s ' ' '\n' | sort | uniq -c | sort -r | awk '{print $2, $1}'
0 commit comments