Grep output to show only matching file

grep

What is the option for grep that will allow me only to print the matching file and not the line within a file that matches the criteria?

Best Answer

grep -l 

(That's a lowercase L)