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?
grep
grep -l
(That's a lowercase L)
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?