Originally Posted By: maroon
If you want to scan a file for whichever is the most common line, you could make a hash table or @window to contain each word found, along with a counter of how many times that word/line appears.

edit: instead of creating a junk @window for the output, you can use the bit-bucket $null alias:

//filter -fk versions.txt null word | echo -a $filtered

Thnx, it's what i needed! Will try realize that. And thnx for -nt switches. And sorry for my language skill :->

Last edited by Kex; 22/10/17 12:13 PM.