@echo off @echo °±²Û desc.btm: add 4NT descriptions to all zzz files Û²±° rem Update the 4NT/TakeCommand file descriptions in DESCRIPT.ION and _O_V_E_R_V_I_E_W.txt Rem adjust drive letter before use: E: cd E:\com\mindprod\zzz attrib -h DESCRIPT.ION > nul: rem Provide generic descriptions for *.class files still without specific descriptions. for %i in (*.class ) do describe %i /D"compiled Java byte code" rem Merge generated descript2.ion to fill in missing descriptions. rem descript2.ion takes precedence over DESCRIPT.ION. copy /Q descript2.ion + DESCRIPT.ION temp.ion del /Q DESCRIPT.ION rename /Q temp.ion DESCRIPT.ION rem Build _O_V_E_R_V_I_E_W.txt from 4NT/TakeCommand DESCRIPT.ION file descriptions. rem Tidy, sort and dedup descriptions keeping first duplicate. fourtidy.exe echo done rem -30-