Last active
December 24, 2017 16:21
-
-
Save pavi2410/a082f09016b7ce050ede6d686f757fb7 to your computer and use it in GitHub Desktop.
Prints classes in a JAR file to *.jar.txt file
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
@echo off | |
for %%f in (*.jar) do echo %%f && jar tf %%f > %%f.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment