Skip to content

Instantly share code, notes, and snippets.

@pavi2410
Last active December 24, 2017 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavi2410/a082f09016b7ce050ede6d686f757fb7 to your computer and use it in GitHub Desktop.
Save pavi2410/a082f09016b7ce050ede6d686f757fb7 to your computer and use it in GitHub Desktop.
Prints classes in a JAR file to *.jar.txt file
@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