Polish Notation
Typically, in mathematics we are used to seeing lots of expressions in the form of operand operator operand . For instance, addition of two numbers, say 1 and 2 would be expressed as 1 + 2 .
However, when it comes to functional languages like Clojure. This order is not honored anymore. Typical expressions are in the form of operator operand operand and this is the Polish Notation. Using our previous example, the addition of 1 and 2 would be expressed as + 1 2
Adding $JAVA_HOME on Ubuntu with 1 command
If you are new to Ubuntu and wanted to set Java path easily this is for you. If you have JDK 1.6+ installed already, just run the command below in your terminal window
jrunscript -e 'java.lang.System.out.println(java.lang.System.getProperty("java.home"));'
The command above will print out the path to where your java home is. Sample output on my terminal is
/usr/lib/jvm/java-8-openjdk-amd64/jre
Therefore, to add java home on Ubuntu with one command, the command below is for you 🙂
export JAVA_HOME="$(jrunscript -e 'java.lang.System.out.println(java.lang.System.getProperty("java.home"));')"
Leave a comment