Skip to content

Instantly share code, notes, and snippets.

@ravibhure
Last active August 29, 2015 14:27
Show Gist options
  • Save ravibhure/00b0729a81b2499dd444 to your computer and use it in GitHub Desktop.
Save ravibhure/00b0729a81b2499dd444 to your computer and use it in GitHub Desktop.
How to retrieve java version
#!/bin/sh
JAVA_VERSION=`echo "$(java -version 2>&1)" | grep "java version" | awk '{ print substr($3, 2, length($3)-2); }'`
echo $JAVA_VERSION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment