You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 2 Next »
#!/bin/bash JAR=$1 path=`pwd` unzip -d $JAR.tmp $JAR pushd $JAR.tmp for f in `find . -name '*.class'`; do out=`echo $f | cut -d. -f-2` java -jar $path/cfr_0_130.jar $f > $out.java done popd
http://www.benf.org/other/cfr/