Last Updated: February 25, 2016
·
464
· gaelgillard

Find a string in a project with one command

When you work on a project that you didn't write yourself, it could be like hell to find a line where a default property is set for example.

So thanks to grep for that !

grep -H -r "default_image.png" .

And it returns all files that contains that string.