how to create a jar file from command line code example
Example 1: run jar file command line
java -jar <jar-file-name>.jar
Example 2: compile jar file command
jar cvf example.jar *
Example 3: compile java to jar in mac
javac HelloWorld.java
Example 4: run jar file
java -jar yourFile.jar