How to compile java over terminal, command line , Run java file
1. You need to check, java version with this command
$ java -version
2. Compile the code
$ javac …… …
3. Run The compiled
$ java -jar compiled.jar
[crayon-6820e48f0bbc0138335618/]
[crayon-6820e48f0bbd0989693479/]