-
-
Save marceloneppel/8ff54dafa9cc8abb7874063c58e7cdaf to your computer and use it in GitHub Desktop.
Decompile JVM class files using IntelliJ IDEA's embedded FernFlower decompiler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java -cp "C:\Program Files (x86)\JetBrains\IntelliJ IDEA 15.0.2\plugins\java-decompiler\lib\java-decompiler.jar" org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler -dgs=true . src |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| java -cp "/Applications/IntelliJ IDEA 15.app/Contents/plugins/java-decompiler/lib/java-decompiler.jar" \ | |
| org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler \ | |
| -dgs=true \ | |
| classDir/ srcDir/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment