37.4.3 Converting a group of files to RTF

If you have a group of FrameMaker MIF files, for example ch*.mif, this command converts them to RTF for import into Microsoft Word:

dcl ch*.mif

Although you can use wildcards in the source argument or list multiple source files on the command line, Mif2Go might run out of memory if there are many files, or if the files are complex. Instead, you can use one of the following equivalent methods.

On the command line:

for %f in (*.mif) do dcl "%f"

In a .bat file:

for %%f in (*.mif) do dcl "%%f"

Note:  Double quotes are required around the dcl source argument if any file names or paths contain spaces.