fixed a bit more, excluding non-useful files.
[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 '.obj' | grep -v '.class' | grep -v '.svn' | grep -v '.git' | grep -v '.exe' | xargs grep -li "$seek"