Last active
October 3, 2019 06:43
-
-
Save hirenrojasara/a304a31a3d5307bc96565b1be10cb515 to your computer and use it in GitHub Desktop.
Install OpenJdk11 on IOS
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# Find latest version here https://jdk.java.net/archive/ | |
# | |
brew list wget || brew install wget | |
wget https://download.java.net/java/GA/jdk11/9/GPL/openjdk-11.0.2_osx-x64_bin.tar.gz | |
tar xvf openjdk-11*_bin.tar.gz | |
sudo mv *.jdk /Library/Java/JavaVirtualMachines/. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment