linux安装java8 shell脚本

Posted 自行车在路上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux安装java8 shell脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash
if type -p java; then
    echo 'Java has been installed.'
    exit 0
else
    echo 'start install java...'
    java_home=/home/jdk8
    wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u141-b15/336fa29ff2bb4ef291e347e091f7f4a7/jdk-8u141-linux-x64.tar.gz"
    mkdir -p $java_home
    tar -xvf jdk-8u141-linux-x64.tar.gz -C $java_home --strip-components 1
    echo "export PATH=$PATH:$java_home/bin" >> /etc/profile
    echo 'setting path successful.'
    source /etc/profile
    echo 'install successful.'
fi

保存以sh结尾的文件,然后执行文件即可

以上是关于linux安装java8 shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

linux安装java8 shell脚本

如何在Windows下运行linux shell脚本

Linux下安装Redis php-redis扩展 redis重启shell脚本 超详细!

linux-shell scripts 脚本的初步认识

请教会linux shell脚本的=~是什么意思?

请教会linux shell脚本的=~是什么意思?