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