Find a term in all your files and echo file name with ==== as a visibility marker.

> for i in $(ls /directory/you/want/to/search): do cat $i | grep {term you want to search for} && echo ==== $i; done

This will run cat on all the files found in ls search them for the term and then echo the filename upon finding the term.