483 B
483 B
jar
Java applications/libraries packager. More information: https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html.
- Recursively archive all files in the current directory into a
.jarfile:
jar cf {{file.jar}} *
- Unzip
.jar/.warfile to the current directory:
jar -xvf {{file.jar}}
- List a
.jar/.warfile content:
jar tf {{path/to/file.jar}}
- List a
.jar/.warfile content with verbose output:
jar tvf {{path/to/file.jar}}