tldr/pages/common/jar.md

16 lines
273 B
Markdown
Raw Normal View History

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