GREP

GREP search
Recursively search all dirs and subdirs and output the results to fount.txt

find . -exec grep -q "Text_I_am_looking_for" '{}' \; -print >found.txt

section: