From: Oleg Broytman Date: Wed, 13 Dec 2017 12:15:32 +0000 (+0300) Subject: Feat(locate-all): Case-sensitive sort X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;ds=inline;h=977046c556b88b04dd6246dbf6979ad1271308ee;p=git-scripts.git Feat(locate-all): Case-sensitive sort --- diff --git a/locate-all b/locate-all index 9521272..afaa3e7 100755 --- a/locate-all +++ b/locate-all @@ -1,4 +1,4 @@ #! /bin/sh locate -b \*.git | sed 's!/\.git$!!' | grep -v "/archive/SQLObject/\|/archive/cheetah3/\|/third-party/\|$HOME/tmp/" | - sort | uniq > locate-all.list + LC_ALL=C sort | uniq > locate-all.list