This file contains 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
#! /bin/bash | |
# function to install latest java | |
function download() { | |
echo "Downloading java $1" | |
# here you have to write curl or wget command to download java | |
# version to be downloaded will be available in $1 | |
} | |
# get version of JAVA installed |