
RexxMerge.cmd has a couple of tasks that I moved out of RexxTool.cmd
because they do not need the tokeniser.

    RexxMerge.cmd REPLACE <FileA> -from=<FileB>

will update procedures in FileA by replacing them with the versions
of those procedures from FileB. FileB can be a filespec, in which
case all matching files will be searched for updateable procedures.
I have a collection of frequently-used internal procedures (the ones
in RexxTool.cmd that start with "0"). If I make a change to one of them
in the master file, I can use RexxMerge.cmd to update any script that
uses that procedure.

    RexxMerge.cmd IMPORT <FileA> -where=<procedure>
    RexxMerge.cmd IMPORT <FileA> -where=<procedure> [-path=<directory name>]

will search <directory name> for an external procedure that matches <procedure>
and import it into FileA, making it an internal procedure. If no -path switch
is given, it searches the %path.

See RexxMerge.cmd -help for the details.


