linux一键安装jdk脚本

#!/bin/bash
JAVA_HOME=''
curPath=$(pwd)
if [ -f $1 ]
then
    tar -xzvf $1
    for file in `ls $curPath`
    do
        if [ -d $file ]
        then
             JAVA_HOME=$curPath/$file
        fi
    done
else
    echo "file is not exist:$1"
    exit
fi
echo "export JAVA_HOME=$JAVA_HOME" >> /etc/profile
echo "export PATH=\$PATH:\$JAVA_HOME/bin" >> /etc/profile
echo "export CLASSPATH=.:\$JAVA_HOME/lib/dt.jar:\$JAVA_HOME/lib/tools.jar" >> /etc/profile

source /etc/profile

echo `java -version`
if [ $? -eq 0 ]
then
    echo -e  "\e[32m Install success! \e[0m"
else
    echo -e "\e[32m Install failed!Please check your file or contact developer and report the error message! \e[0m"
fi

请确保脚本和压缩文件在同一个目录

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值