Batman
Batman

Reputation: 1324

Find specific path inside a jar

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

Answers (1)

NinjaGaiden
NinjaGaiden

Reputation: 3146

Try doing

jar tf TicTacToe.jar

For additional information you can do

jar tvf TicTacToe.jar

Upvotes: 1

Related Questions