• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Search inside multiple text files

I've did a bit of googling and haven't came up with anything. What I need is some kind of a program where I can set the target, and make it search through the contents of all the text files. Any such kind of animal out there? If there is anyway to make it easier searching through 3,500+ text files to find one thing then opening them one at a time, I'd sure like to do it. Thanks 🙂
 
Indeed there is. I assume you're on Windows or you'd already know about this - a windows port of grep.

Looks complicated, but it's not, really. Just stick grep.exe somewhere in your path (probably C:\Windows) and open a command line in the folder where the files are.

Usage: grep -i "the string you want to search for" *.*

-i makes the search case insensitive. You can also obviously specity one/some files instead of all by replacing *.* with a filename or a different wildcard filter.

Edit: Of course, if the files are in subdirectories, use -S like it's demonstrated on the site.
 
Back
Top