From: Oleg Broytman Date: Mon, 23 Dec 2019 02:31:26 +0000 (+0300) Subject: Feat(locate-all): Use `sort -u` instead of `sort | uniq` X-Git-Url: https://git.phdru.name/?p=git-scripts.git;a=commitdiff_plain;h=e78829f5e4f3f167c40114a40c8d2d002fb5be4e Feat(locate-all): Use `sort -u` instead of `sort | uniq` --- diff --git a/locate-all b/locate-all index 3440614..f83a882 100755 --- a/locate-all +++ b/locate-all @@ -10,4 +10,4 @@ locate -b \*.git | fi fi done | - LC_ALL=C sort | uniq > locate-all.list +LC_ALL=C sort -u > locate-all.list