How can I use grep to show just filenames (no in-line matches) on linux?
I am usually using something like
find . -iname "*php" -exec grep -H myString {} \;
How can I just get the filenames ( with paths) but without the matches? Do I have to use xargs? Didn't see a way to do this on my grep man page.
vim $(grep -rl Something app/)– David Tuite Mar 20 at 10:49