Added jar files access note to the knowledge base

This commit is contained in:
Michele Cereda
2022-04-17 20:09:34 +02:00
parent 2dd3440a97
commit 174b3b3031

View File

@@ -0,0 +1,14 @@
# Access a jar file's contents
A `.jar` file is nothing more than an archive.
You can find all the files it contains just unzipping it:
```shell
$ unzip file.jar
Archive: file.jar
creating: META-INF/
inflating: META-INF/MANIFEST.MF
creating: org/
inflating: META-INF/maven/org.apache.hive/hive-contrib/pom.properties
```