I've found myself needing to sort through a large number of files for a particular phrase. Thanks to the Gnu/Linux command line, I'm able to list the filename for every file that this search phrase is found.
How, you might ask? It's easy. And here's how.
Open up your favorite terminal emulator (often found under accessories).
Type the following:
find . -maxdepth 1 | xargs grep 'text to search for' -sl
and voila! An instant list of files where the phrase was found.
Recent comments
1 year 38 weeks ago
1 year 38 weeks ago
1 year 39 weeks ago
1 year 39 weeks ago
1 year 52 weeks ago
2 years 4 days ago
2 years 4 days ago
2 years 23 weeks ago
2 years 23 weeks ago
2 years 32 weeks ago