Skip to content

Instantly share code, notes, and snippets.

@dmlloyd
Created October 22, 2025 14:18
Show Gist options
  • Select an option

  • Save dmlloyd/506c45f98ffa57b9c72f2be1116cd044 to your computer and use it in GitHub Desktop.

Select an option

Save dmlloyd/506c45f98ffa57b9c72f2be1116cd044 to your computer and use it in GitHub Desktop.
`.bashrc` snippet for `jdk` command on Mac OS
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