more things ruled out. probably should move to doing the patterns inside the find...
[feisty_meow.git] / scripts / buildor / find_in_code.sh
1 #!/bin/bash
2 seek="$1"; shift
3
4 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"