maxbld.bat 235 B

123456789101112131415161718
  1. if "%2"=="" goto Usage
  2. dir /AD /B /O-N %1 | awk.exe -f %SCRIPTDIR%\util\maxbld.awk %2 > %TEMP%\maxbld.bat
  3. call %TEMP%\maxbld.bat
  4. goto End
  5. :Usage
  6. echo Usage: maxbld.bat [directory] [variable name]
  7. set BUILDERROR=1
  8. goto End
  9. :End