Created
October 22, 2025 14:18
-
-
Save dmlloyd/506c45f98ffa57b9c72f2be1116cd044 to your computer and use it in GitHub Desktop.
`.bashrc` snippet for `jdk` command on Mac OS
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
| function jdk() { | |
| if [ $# -ne 0 ]; | |
| then export JAVA_HOME=`/usr/libexec/java_home -v $@`; | |
| fi; | |
| java -version; | |
| } | |
| # Automatically set the JAVA_HOME | |
| jdk 24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment