[plug] Limits of grep?

Matt Kemner zombie at wasp.net.au
Tue Sep 26 18:42:25 WST 2000


On Tue, 26 Sep 2000, Subba Rao wrote:

> I have a directory of 10000+ text files and would like to search for

> Are there any other recommended tools to search through such large list of
> files?

for X in *
do
  grep -q textstring $X && echo FOUND textstring in $X
done

 - Matt




More information about the plug mailing list