Last active
March 9, 2025 01:57
-
-
Save mslinn/0e6fe9a2504a54e74e8c to your computer and use it in GitHub Desktop.
Decompile JVM class files using IntelliJ IDEA's embedded FernFlower decompiler
This file contains 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 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