You need to find files containing certain phrasse? Here is how:

find . -type f -exec grep -i YOURPHRASSEHERE '{}' \; -print
If you search some sentence with spaces, add "" around the search phrasse.

find . means it will start search in current directory and search all subdirectories
find / will search whole file system