Skip to content

Instantly share code, notes, and snippets.

View renatonolo's full-sized avatar
🏠
Working from home

Renato N. Lourenço renatonolo

🏠
Working from home
View GitHub Profile
@renatonolo
renatonolo / install-oracle-jdk8.sh
Last active September 2, 2024 12:39
Install Oracle JDK 8 via SDKMAN
#!/bin/bash
#
# Install Oracle JDK 8 for use with SDKMAN
#
set -eu
# This URL can be discovered using https://sites.google.com/view/java-se-download-url-converter
DOWNLOAD_URL="https://javadl.oracle.com/webapps/download/GetFile/1.8.0_331-b09/165374ff4ea84ef0bbd821706e29b123/linux-i586/jdk-8u331-linux-x64.tar.gz"
TARBALL="jdk-8u331-linux-x64.tar.gz"