加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
19052101issue4.sh 761 Bytes
一键复制 编辑 原始数据 按行查看 历史
milk 提交于 2021-06-18 00:21 . recommite2
#/bin/bash
#auto judge and solve specific jdk download,install and allocation
jdkDir=/usr/local/jdk
#check directory
if [ -e $jdkDir ]
then
echo "$jdkDir folder exists, operation stop"
exit
fi
echo "check if there exists jdk 1.8..."
if [ -f $1 ]
then
mkdir $jdkDir
echo "begin decompress..."
tar -zxvf $1 -C $jdkDir
for file in $jdkDir
do
if [ -d $file ]
then
JAVA_HOME=$file
fi
done
echo "JAVA_HOME=$JAVA_HOME"
else
echo "file not exists :$1"
exit
fi
#update environment parameter
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
echo "jdk install complete..."
echo $(java -version)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化