I have a really large csv file and want to sort them external.
The problem is that i need several sorting orders and a separator which I can specify.
I've searched a while and found out, that I need to use the window sort command.
But I didn't find anything. How I can specify the separator of the sorting order?
All I found was a solution on unix ("sort --field-separator=';' --key=2,1,3") but it looks like there is no equivalent on windows.
Do you have any idea how i can solve the problem without implementing my own sort algorithm?
(By the way I'm using C#)