#! /bin/bash

for i in `find .`; do 
  if [ -d $i ]; then 
    continue
  elif [ "$i" = "find_used_resources" ]; then
    continue
  elif [ "$i" = "log" ]; then
    continue
  fi; 
  j=`basename $i`
  echo ";;;;;;;;;;;;;;;;;;;;;;;;;;;"
  echo "Grepping for $j ($i):"
  grep -rI "$j" ../src | grep -v "svn" | grep -v "ResPath.java"
  # grep -rI "$j" ../resources/html | grep -v "svn"
done

