For that, you can write:
find {directory} -type f | xargs grep -l "{stringToFind}"
This is really useful... specially to find out how certain things work (configuration files, like for example
those used inside eclipse are really harder to find without this command)
find {directory} -type f | xargs grep -l "{stringToFind}"
This is really useful... specially to find out how certain things work (configuration files, like for example
those used inside eclipse are really harder to find without this command)
No comments:
Post a Comment