Created
January 10, 2012 17:47
-
-
Save phrawzty/1590203 to your computer and use it in GitHub Desktop.
GNU sort on Debian vs CentOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat sortme | |
1234 | |
abcd | |
ABCD | |
*** | |
::: | |
debian$ cat sortme | sort | |
::: | |
*** | |
1234 | |
abcd | |
ABCD | |
centos$ cat sortme | sort | |
*** | |
1234 | |
::: | |
ABCD | |
abcd | |
### seriously? wtf. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aaah, it would appear that LC_ALL was the culprit. Good times.