多个 jar 文件内省
如何在 bash shell 上编写一个命令,该命令可以在目录中搜索多个 jar 文件以查找指定的类或字符串路径。例如,
我想搜索所有 workshop.jar 来搜索此字符串路径:
com/bea/workshop/common/util/fileio/ManifestUtil
How do write a command on bash shell that can search a number of jar files in a directory for a specified class or string path. Eg
I want to search all workshop.jar searching for this string path:
com/bea/workshop/common/util/fileio/ManifestUtil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
祝你好运,
-M
try this:
Good luck,
-M
查找包含模式(类或文件)的 jar 从搜索树的根目录创建以下脚本 findjars
并将其用作
替代方案,列出某个目录中所有 jar 文件中的所有类和文件目录或目录树:
Find jars with containing pattern (class or file) create the following script findjars from the root directory of a search tree
and use it as
Alternatively, to list all classes and files within all of the jar files within a directory or directory tree:
使用 JarScan。
Use JarScan.