On Thu, 26 Sep 2002, Steve Buehler wrote:

> Yes, I was trying to avoid the filenames printing out.  Thank You for the 
> info.  This is exactly what I needed.  Speed is not to much of a factor for 
> what I am doing here though because there are less than 100 .conf 
> files.  But it will come in handy in the future.

and while i'm being inordinately helpful, here's yet another cute
trick, if you still want to know where those lines are coming from --
use a "for" loop on the command line:

$ for f in *.conf ; do
echo "Scanning $f ..."
egrep -h "Virtual|Server" $f            # or whatever the pattern was
done

rday




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to