Simple find-string with a batch-file. Put the few lines below into a batch file (in my example FINDS.BAT).
Code:@echo off
FINDSTR /S /I /M %1 %2 >> match.lst
echo -- Above search for: %1 -- >> match.lst
echo. >> match.lst
Example of use: FINDS.BAT "find this text" *.*
This will search all files in the current directory and subdirectories for files containing "find this text" and write a list over matches to match.lst. To limit search to a specified type of files change *.* to the kind of ext you wanna search, ie: *.txt
Dont forgett the "" around the text on the command line.
I wrote this batch-file on Win2000, dont know if it will work on other M$ products.
Dont know if it's something like this you wanna do?
~micael
