1 #!/bin/sh 2 # 3 # Start-up script for ProGuard -- free class file shrinker, optimizer, 4 # obfuscator, and preverifier for Java bytecode. 5 # 6 # Note: when passing file names containing spaces to this script, 7 # you'll have to add escaped quotes around them, e.g. 8 # "\"/My Directory/My File.txt\"" 9 10 PROGUARD_HOME=`dirname "$0"`/.. 11 12 java -jar $PROGUARD_HOME/lib/proguard.jar "$@" 13