I want to sort a big text file (about 12 Giga), by counting the occurrences of each line. For that I have used :
sort file.txt | uniq -c > sorted
But it is taking forever because of geometrical expansion. Any idea?
|
I want to sort a big text file (about 12 Giga), by counting the occurrences of each line. For that I have used :
But it is taking forever because of geometrical expansion. Any idea? |
|||||
|
d now contains a dictionary, where each key is a unique line, and the value is the count of that line. |
|||||||||||||
|