1@ECHO OFF 2 3REM Start-up script for Retrace -- companion tool for ProGuard, free class file 4REM shrinker, optimizer, obfuscator, and preverifier for Java bytecode. 5REM 6REM Note: when passing file names containing spaces to this script, 7REM you'll have to add escaped quotes around them, e.g. 8REM "\"C:/My Directory/My File.txt\"" 9 10IF EXIST "%PROGUARD_HOME%" GOTO home 11SET PROGUARD_HOME=%~dp0\.. 12:home 13 14java -jar "%PROGUARD_HOME%\lib\retrace.jar" %* 15