是否有任何文件内容搜索工具可以在查看 JAR 文件之前先将其解压缩?

是否有任何文件内容搜索工具可以在查看 JAR 文件之前先将其解压缩?

我使用 Agent Ransack 来 grep 整个目录。但它在查看 JAR 文件之前不会对其进行解压缩,有没有什么工具可以做到这一点?

答案1

尝试使用unzip

unzip -p your_file.jar | grep "your_search"

man页面:

-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).

相关内容