I want to calculate the frequency of the words from a file, where the words are one by line. The file is really big, so this might be the problem (it counts 300k lines in th
Or use "sort -u" which also eliminates duplicates. See here.