Created
June 17, 2014 14:11
-
-
Save scottcagno/c060694292e5b8993ebd to your computer and use it in GitHub Desktop.
install and stage java8 using apt-get
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
| #!/bin/bash | |
| # install and stage java8 using apt-get | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get -y install oracle-java8-installer | |
| sudo apt-get autoremove | |
| sudo apt-get -y install oracle-java8-set-default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment