1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 22:04:55 +02:00
tldr/pages/common/jar.md
2019-06-05 23:42:48 -03:00

16 lines
368 B
Markdown

# 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}}`