grep output to show only matching file

grep

Solution

grep -l 

(That's a lowercase L)

Problem

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?

Original source

Related problems