Here is a snippet from Sort command's help functionality:
/REC[ORD_MAXIMUM] characters Specifies the maximum number of characters
in a record (default 4096, maximum 65535).
Here is the error when I try to sort a file with long lines:
C:\Users\heqin\PIM2>cat Artist_Input.tsv | sort /REC 65535
Input record exceeds maximum length. Specify larger maximum.
Short of writing a custom script (in Python, for example) just to handle this case, what is a good workaround to sorting files with lines longer than 65535?
As a clarification, I am using the Unix Utils version of "sort", running on Windows.
.separator \t) and then you can runselect * from artists sort by nameor whatever column you want. Far more functionality would be available to you. – evil otto Jun 4 '12 at 22:26