From: Chris Koeritz Date: Thu, 10 Jan 2013 21:35:25 +0000 (-0500) Subject: fixed a bit more, excluding non-useful files. X-Git-Tag: 2.140.90~1149 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;ds=inline;h=2ddb6288beebe5936a30b386671bd7713d9b658b;p=feisty_meow.git fixed a bit more, excluding non-useful files. --- diff --git a/scripts/buildor/find_in_code.sh b/scripts/buildor/find_in_code.sh index b1d593ac..3b9d9a13 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 '.svn' | grep -v '.git' | grep -v '.exe' | xargs grep -li "$seek" +find . -type f -exec echo "\"{}\"" ';' | grep -v '.obj' | grep -v '.class' | grep -v '.svn' | grep -v '.git' | grep -v '.exe' | xargs grep -li "$seek"