All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.downloadJdk.sh.ftl Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
#!/bin/bash
fileName=/opt/jdk-17
if [ -d $fileName ];then
    echo "$fileName文件夹已存在"
else
    cd /opt
    wget https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.tar.gz
    tar zxvf jdk-17_linux-x64_bin.tar.gz
    mv jdk-17.0.11 jdk-17
fi




© 2015 - 2024 Weber Informatics LLC | Privacy Policy