escstr.bat 221 B

123456789101112131415161718
  1. if "%2"=="" goto Usage
  2. echo %1 | awk.exe -f %SCRIPTDIR%\util\escstr.awk %2 > %TEMP%\escstr.bat
  3. call %TEMP%\escstr.bat
  4. goto End
  5. :Usage
  6. echo Usage: escstr.bat [string] [variable name]
  7. set BUILDERROR=1
  8. goto End
  9. :End