@echo off @echo °±²Û desc.btm: add TCC descriptions to all need files Û²±° rem Update the TCC 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\need 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 TakeCommand/TCC DESCRIPT.ION file descriptions. rem Tidy, sort and dedup descriptions keeping first duplicate. fourtidy.exe -f echo done rem -30-