1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/common/jar.md
2018-09-06 12:51:52 +01:00

15 lines
273 B
Markdown

# jar
> Java Applications/Libraries Packager.
- 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}}`