Ich verwende Agent Ransack, um ganze Verzeichnisse zu durchsuchen. Aber es entpackt keine JAR-Dateien, bevor es sie untersucht. Gibt es ein Tool, das das kann?
Antwort1
Versuchen Sie es mit unzip
:
unzip -p your_file.jar | grep "your_search"
Von der man
Seite:
-p extract files to pipe (stdout). Nothing but the file data is sent to
stdout, and the files are always extracted in binary format, just as
they are stored (no conversions).