How do I use grep to search the current directory for any and all files containing the string "hello" and display only .h and .cc files?
grep -r --include=*.{cc,h} "hello" .
This reads: search recursively (in all sub directories also) for all .cc OR .h files that contain "hello" at this .
(current) directory