mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 10:32:11 +03:00
368 B
368 B
jar
Java Applications/Libraries Packager. More information: https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html.
- Unzip .jar/.war file to the current directory:
jar -xvf {{file.jar}}
- List a .jar/.war file content:
jar tf {{path/to/file.jar}}
- List a .jar/.war file content with verbose output:
jar tvf {{path/to/file.jar}}