Skip to content

Instantly share code, notes, and snippets.

@axross
Created December 31, 2018 09:25
Show Gist options
  • Save axross/32befa43467e30b21634f7abb264e268 to your computer and use it in GitHub Desktop.
Save axross/32befa43467e30b21634f7abb264e268 to your computer and use it in GitHub Desktop.
function javaenv
if test (count $argv) -eq 0
/usr/libexec/java_home -V
else
switch $argv[1]
case 'ls'
/usr/libexec/java_home -V
case 'set'
set -xU JAVA_HOME (/usr/libexec/java_home -v $argv[2])
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment