You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
391 B
11 lines
391 B
|
19 years ago
|
#!/bin/sh
|
||
|
|
case "$1" in
|
||
|
|
[Ss]wi* ) CLAZZ=net.sf.jode.swingui.Main; shift ;;
|
||
|
|
[Dd]ec* ) CLAZZ=net.sf.jode.decompiler.Main; shift ;;
|
||
|
|
[Oo]bf* ) CLAZZ=net.sf.jode.obfuscator.Main; shift ;;
|
||
|
|
* ) CLAZZ=net.sf.jode.decompiler.Main ;;
|
||
|
|
esac
|
||
|
|
exec @l_prefix@/bin/java \
|
||
|
|
-cp @l_prefix@/libexec/jode/jode.jar:@l_prefix@/libexec/jode/java-getopt.jar \
|
||
|
|
$CLAZZ ${1+"$@"}
|