From: Oleg Broytman Date: Mon, 25 Jul 2016 14:16:29 +0000 (+0300) Subject: locate-all: filter off excessive repos X-Git-Url: https://git.phdru.name/?p=git-scripts.git;a=commitdiff_plain;h=a6ae824ff1502e3fe34c1fc18aa7610add5f6dfd locate-all: filter off excessive repos --- diff --git a/locate-all b/locate-all index 21daa91..b4fcdee 100755 --- a/locate-all +++ b/locate-all @@ -1,2 +1,4 @@ #! /bin/sh -locate -b \*.git | sed 's!/\.git$!!' | sort | uniq >locate-all.list +locate -b \*.git | sed 's!/\.git$!!' | + grep -v "/archive/SQLObject/\|/third-party/\|$HOME/tmp/" | + sort | uniq > locate-all.list