From: Chris Koeritz Date: Thu, 10 Jan 2013 22:30:50 +0000 (-0500) Subject: more things ruled out. probably should move to doing the patterns inside the find... X-Git-Tag: 2.140.90~1148 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=7a4ba9b7648ab1f1dc9e5226f74ce94572bfb3cd;p=feisty_meow.git more things ruled out. probably should move to doing the patterns inside the find command. --- diff --git a/scripts/buildor/find_in_code.sh b/scripts/buildor/find_in_code.sh index 3b9d9a13..ed9cb859 100644 --- a/scripts/buildor/find_in_code.sh +++ b/scripts/buildor/find_in_code.sh @@ -1,4 +1,4 @@ #!/bin/bash seek="$1"; shift -find . -type f -exec echo "\"{}\"" ';' | grep -v '.obj' | grep -v '.class' | grep -v '.svn' | grep -v '.git' | grep -v '.exe' | xargs grep -li "$seek" +find . -type f -exec echo "\"{}\"" ';' | grep -v '.svn' | grep -v '.git' | grep -v '.exe' | grep -v '.obj' | grep -v '.class' | grep -v '.dll' | grep -v '.lib' | xargs grep -li "$seek"