I am working on writing some scripts to grep certain directories, but these directories contain all sorts of file types.
grep
I want to grep jus
How about:
find . -name '*.h' -o -name '*.cpp' -exec grep "CP_Image" {} \; -print