How do you extract the contents of a JAR file in (Ubuntu) Linux?
Fun fact: A .jar file is actually just a .zip file
unzip file.jar
jar -xvf file.jar
or if you have jdk installed:
jar xf file.jar