If you have ever wanted to recursively search through all of the files in a directory for a specific string, here is the bash command to do it:
find . | xargs grep ‘string’ -sl
Full-Stack software architect/engineer (currently working in the Big Data space), drummer, motorcyclist, and artist.
If you have ever wanted to recursively search through all of the files in a directory for a specific string, here is the bash command to do it:
find . | xargs grep ‘string’ -sl