jar
Java applications/libraries packager. More information: <https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html>.
Install
- All systems
-
curl cmd.cat/jar.sh
- Debian
-
apt-get install gcj-4.7-jdk - Ubuntu
-
apt-get install openjdk-12-jdk-headless - Arch Linux
-
pacman -S java-environment-common - Kali Linux
-
apt-get install openjdk-11-jdk-headless - Fedora
-
dnf install java-9-openjdk-devel-debug-1 - Windows (WSL2)
-
sudo apt-get updatesudo apt-get install openjdk-12-jdk-headless - Raspbian
-
apt-get install openjdk-8-jdk
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 .jar file:
jar cf file.jar * -
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
© tl;dr; authors and contributors