Using the same sort command with the same input produces different results on different machines. How do I fix that?
|
|
The man-page on OS X says:
which might explain things. If some of your systems have no locale support, they would default to that locale (C), so you wouldn't have to set it on those. If you have some that supports locales and want the same behavior, set If you don't have any locale-less systems, just making sure they share locale would probably be enough. For more canonical information, see the The Single UNIX ® Specification, Version 2 description of locale, environment variables, setlocale() and the description of the sort(1) utility. |
|||
|
|
|
|
This is probably due to different settings of the locale environment variables. |
||
|
|
|
|
What platform are you using? Can you share your input data? My guess is it's something to do with a culture setting (invariant vs en-us, for example). |
||
|
|
|
|
This can be the result of locale differences:
Setting the LC_ALL environment variable to the same value should correct the problem. |
||
|
|
|
|
For more than you ever wanted to know about
IOW, how |
||
|
|
|
|
Is it possible that the differing machines have different version of sort? For instance, GNU sort is likely different from a Solaris sort, or have different default parameters. Can you make a simple example sort that shows the differences? Also, get the version of each different sort. -Aam |
||
|
|
