---------------------------------------------------------------------------
strep by Jeff Peters - jeff@grokfusebox.com
---------------------------------------------------------------------------
This custom tag is is a very simple string extractor.  It recurses a 
directory tree and searches all files for the specified targetString.
Kind of like grep, but for straight strings instead of regular expresssions.

Installation
--------------
Drop the strep.cfm file into your CustomTags directory.

Use
----------------
Call strep from as in the enclosed strepCall.cfm file:

<cf_strep targetString="qryGetStudents.cfm">
                
This causes strep to run in the current directory.  If you want it to start
in a different directory, specify it with the rootDir attribute:

<cf_strep targetString="qryGetStudents.cfm"
               rootDir="c:\InetPub\wwwroot">
               
Have fun!
- Jeff               
 