REM mkoverviews.btm rem Prepares _O_V_E_R_V_I_E_W.txt files from 4NT DESCRIPT.ION files for the current directory tree rem by running fourtidy.exe in each subdirectory. rem pushd/popd allow us to put current directory back the way it was. for /h /a:d %d in (*.*) do ( pushd & cd %d & echo %cd & call mkoverview.btm NOECHO & popd ) rem -30-