fixed for names with spaces in them.
authorChris Koeritz <fred@gruntose.com>
Thu, 10 Jan 2013 19:56:21 +0000 (14:56 -0500)
committerChris Koeritz <fred@gruntose.com>
Thu, 10 Jan 2013 19:56:21 +0000 (14:56 -0500)
scripts/buildor/find_in_code.sh

index 65ffc77cc2a2336866911eb747c17d6961b150dd..b1d593acaadd3e0230f36babcf7947133be49de2 100644 (file)
@@ -1,4 +1,4 @@
 #!/bin/bash
 seek="$1"; shift
 
-find . -type f | 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' | xargs grep -li "$seek"