proguardgui.bat revision b9cc48a43ed984587c939d02fba5316bf5c0df6e
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