Skip to end of metadata
Go to start of metadata

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


Reference

http://www.benf.org/other/cfr/


  • No labels