1@ECHO OFF
2
3REM Start-up script for ProGuard -- free class file shrinker, optimizer,
4REM 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=..
12:home
13
14java -jar "%PROGUARD_HOME%\lib\proguard.jar" %*
15