mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 14:02:08 +02:00
15 lines
273 B
Markdown
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}}`
|