Reputation: 1324
I got a jar file, and I know a class name in it for sure. I need to know, in case this class file is in folder inside that jar, a command @Unix, in which I can see the full path of that class file where in that jar.
Thanks.
Upvotes: 0
Views: 67
Reputation: 3146
Try doing
jar tf TicTacToe.jar
For additional information you can do
jar tvf TicTacToe.jar
Upvotes: 1