Why doesn't **sort** sort the same on every machine? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T04:30:14Zhttp://stackoverflow.com/feeds/question/28881http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine6Why doesn't **sort** sort the same on every machine?Jon Ericsonhttp://stackoverflow.com/users/14382008-08-26T19:15:47Z2009-04-16T15:42:57Z
<p>Using the same <strong>sort</strong> command with the same input produces different results on different machines. How do I fix that?</p>
http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/28887#288871Answer by Joel Coehoorn for Why doesn't **sort** sort the same on every machine?Joel Coehoornhttp://stackoverflow.com/users/30432008-08-26T19:19:04Z2008-08-26T19:19:04Z<p>What platform are you using? Can you share your input data?</p>
<p>My guess is it's something to do with a culture setting (invariant vs en-us, for example).</p>
http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/28893#288931Answer by Jon Ericson for Why doesn't **sort** sort the same on every machine?Jon Ericsonhttp://stackoverflow.com/users/14382008-08-26T19:19:31Z2008-08-26T19:19:31Z<p>This can be the result of locale differences:</p>
<pre><code>$ echo 'CO2_
CO_' | env LC_ALL=C sort
CO2_
CO_
$ echo 'CO2_
CO_' | env LC_ALL=en_US sort
CO_
CO2_
</code></pre>
<p>Setting the LC_ALL environment variable to the same value should correct the problem.</p>
http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/28895#288950Answer by Adam Davis for Why doesn't **sort** sort the same on every machine?Adam Davishttp://stackoverflow.com/users/29152008-08-26T19:20:14Z2008-08-26T19:20:14Z<p>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.</p>
<p>Can you make a simple example sort that shows the differences? Also, get the version of each different sort.</p>
<p>-Aam</p>
http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/28901#289012Answer by Greg Hewgill for Why doesn't **sort** sort the same on every machine?Greg Hewgillhttp://stackoverflow.com/users/8932008-08-26T19:21:42Z2008-08-26T19:21:42Z<p>This is probably due to different settings of the <a href="http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.nls/doc/nlsgdrf/locale_env.htm" rel="nofollow">locale environment variables</a>. <code>sort</code> will use these settings to determine how to compare strings. By setting these environment variables the way you want before calling <code>sort</code>, you should be able to force it to behave in one specific way.</p>
http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/28903#2890311Answer by Henrik Gustafsson for Why doesn't **sort** sort the same on every machine?Henrik Gustafssonhttp://stackoverflow.com/users/20102008-08-26T19:21:56Z2009-04-16T15:42:57Z<p>The <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/sort.1.html" rel="nofollow">man-page</a> on OS X says:</p>
<blockquote>
<p><strong>***</strong> WARNING <strong>***</strong> The locale specified by the environment affects sort order. Set LC_ALL=C to get
the traditional sort order that uses native byte values.</p>
</blockquote>
<p>which might explain things.</p>
<p>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 <code>LC_ALL=C</code> on those systems. That would be the way to have as many systems as I know do it the same way.</p>
<p>If you don't have any locale-less systems, just making sure they share locale would probably be enough.</p>
<p>For more canonical information, see the The Single UNIX ® Specification, Version 2 description of <a href="http://opengroup.org/onlinepubs/007908799/xbd/locale.html" rel="nofollow">locale</a>, <a href="http://opengroup.org/onlinepubs/007908799/xbd/envvar.html" rel="nofollow">environment variables</a>, <a href="http://opengroup.org/onlinepubs/007908799/xsh/setlocale.html" rel="nofollow">setlocale()</a> and the description of the <a href="http://opengroup.org/onlinepubs/007908799/xcu/sort.html" rel="nofollow">sort(1)</a> utility.</p>
http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/29315#293151Answer by Jörg W Mittag for Why doesn't **sort** sort the same on every machine?Jörg W Mittaghttp://stackoverflow.com/users/29882008-08-27T01:25:42Z2008-08-27T01:25:42Z<p>For more than you ever wanted to know about <code>sort</code>, read the <a href="http://OpenGroup.Org/onlinepubs/009695399/utilities/sort.html" rel="nofollow" title="sort">specification of <code>sort</code></a> in the <a href="http://OpenGroup.Org/onlinepubs/009695399/" rel="nofollow" title="Single Unix Specification v3">Single Unix Specification v3</a>. It states</p>
<blockquote>
<p>Comparisons [...] shall be performed using the collating sequence of the current locale.</p>
</blockquote>
<p>IOW, how <code>sort</code> sorts is dependent on the locale (language) settings of the environment that the script is running under.</p>