Skip to content

Instantly share code, notes, and snippets.

@hoop33
Created September 2, 2015 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoop33/e02d8ae9113616e2cd60 to your computer and use it in GitHub Desktop.
Save hoop33/e02d8ae9113616e2cd60 to your computer and use it in GitHub Desktop.
Making "java -v", "java --version", and "java version" work
function java() {
case $* in
-v)
;&
version)
;&
--version) shift 1; command java -version ;;
*) command java "$@" ;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment