Skip to content

Instantly share code, notes, and snippets.

@phrawzty
Created January 10, 2012 17:47
Show Gist options
  • Save phrawzty/1590203 to your computer and use it in GitHub Desktop.
Save phrawzty/1590203 to your computer and use it in GitHub Desktop.
GNU sort on Debian vs CentOS
$ cat sortme
1234
abcd
ABCD
***
:::
debian$ cat sortme | sort
:::
***
1234
abcd
ABCD
centos$ cat sortme | sort
***
1234
:::
ABCD
abcd
### seriously? wtf.
@phrawzty
Copy link
Author

Aaah, it would appear that LC_ALL was the culprit. Good times.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment