Ŀ
                       FINDREPL.EXE (Find And Replace)                      


Usage.........FINDREPL filespec "source" ["replace"] [/Y] [/43] [/50]

Find & Replace will search for sourcetext in the given filespec. If you supply
replacetext, then this will replace any occurances of sourcetext. If you wish 
to delete all occurances of sourcetext then do not use the replace parameter 
and use /Y to confirm the deletion. The source text and replace text must be in
quotes (you cannot use quotes inside quotes).

/43...........will use 43 line mode (requires EGA or greater).
/50...........will use 50 line mode (reqiures VGA or greater).
/Y............Confirms deletion of search text found.

filespec......path of files to use, ie *.TXT or C:\PROGRAMS\*.BAS

source........source text to find, must be in quotes.
replace.......optional text to replace the source text with.

Examples


FINDREPL C:\PROGRAMS\*.BAS "DEFINT" 
will search for DEFINT in all .BAS files in the C:\PROGRAMS directory.

FINDREPL C:\DOS\*.TXT "NETWORK" "TEMPTEXT" 
will search the .TXT files in the C:\DOS directory and replace the text 
NETWORK with TEMPTEXT

FINDREPL *.DOC "GREG" /Y 
will delete all ocurrances of GREG in any .DOC files in the current directory.

