Hi, this question is quite basic.
I'm simply trying to understand what a call to sort, using no additional parameters, returns. "man sort" reports it will return:
"sorted concatenation of all FILE(s)"
so what is a "sorted concatenation"? Does it sort first by the first column, then by the second, etc? Or just on the first?
Really, I have a very large file and I only need it sorted on the first column. So will:
sort -k1,1 myFile.txt
be faster than:
sort myFile.txt ?
Thanks..