Skip to content

Instantly share code, notes, and snippets.

@joestein
Created February 29, 2012 13:22
Show Gist options
  • Save joestein/1940798 to your computer and use it in GitHub Desktop.
Save joestein/1940798 to your computer and use it in GitHub Desktop.
sort on linux vs mac
Josephs-MacBook-Pro:~ josephstein$ cat test
1,,2
1,1,2
Josephs-MacBook-Pro:~ josephstein$ cat test |sort
1,,2
1,1,2
[root@megatron joestein]# cat test
1,,2
1,1,2
[root@megatron joestein]# cat test|sort
1,1,2
1,,2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment