jar: add jar listing options examples (#2299)

italian
Eran Harel 2018-09-06 14:51:52 +03:00 committed by Owen Voke
parent b50c88a51b
commit bab953281a
1 changed files with 9 additions and 1 deletions

View File

@ -4,4 +4,12 @@
- Unzip .jar/.war file to the current directory:
`jar -xvf *.jar`
`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}}`