Last active
December 3, 2019 00:41
-
-
Save pambrose/7b1e2cd9c5a006c10113db814f5f9cd5 to your computer and use it in GitHub Desktop.
Aliases to set JDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add these to your .zshrc or .cshrc files | |
| j8='export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home; java -version' | |
| j11='export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.5.jdk/Contents/Home; java -version' | |
| j13='export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-13.0.1.jdk/Contents/Home; java -version' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment