Jarvis
To help you out with small things.
Thursday, 14 November 2013
Find count of each word in a file in linux command line
tr -s [:space:] \\n < your_filename | sort | uniq --count | sort -rn | head -n 50
This shows the top 50 words in your file in a sorted manner
Newer Post
Older Post
Home