linux-tutorial/codes/linux/soft/tomcat8-install.sh

58 lines
1.5 KiB
Bash
Raw Normal View History

2018-02-01 16:34:02 +08:00
#!/usr/bin/env bash
2019-07-12 15:53:54 +08:00
###################################################################################
# 控制台颜色
BLACK="\033[1;30m"
RED="\033[1;31m"
GREEN="\033[1;32m"
YELLOW="\033[1;33m"
BLUE="\033[1;34m"
PURPLE="\033[1;35m"
CYAN="\033[1;36m"
RESET="$(tput sgr0)"
###################################################################################
printf "${BLUE}"
2019-05-07 14:14:30 +08:00
cat << EOF
###################################################################################
# 安装 Tomcat 脚本
2019-05-07 14:29:16 +08:00
# @system: 适用于所有 linux 发行版本。
# @author: Zhang Peng
###################################################################################
2018-02-01 16:34:02 +08:00
2019-05-07 14:14:30 +08:00
EOF
2019-07-12 15:53:54 +08:00
printf "${RESET}"
printf "${GREEN}>>>>>>>> install tomcat begin.${RESET}\n"
2018-02-01 16:34:02 +08:00
2019-05-09 11:26:06 +08:00
if [[ $# -lt 1 ]] || [[ $# -lt 2 ]];then
2019-07-12 15:53:54 +08:00
printf "${PURPLE}[Hint]\n"
printf "\t sh tomcat8-install.sh [version] [path]\n"
printf "\t Example: sh tomcat8-install.sh 8.5.28 /opt/tomcat8\n"
printf "${RESET}\n"
2019-05-09 11:26:06 +08:00
fi
version=8.5.28
2019-05-07 14:14:30 +08:00
if [[ -n $1 ]]; then
version=$1
fi
2019-07-12 15:53:54 +08:00
path=/opt/tomcat
2019-05-07 14:14:30 +08:00
if [[ -n $2 ]]; then
2019-07-12 15:53:54 +08:00
path=$2
2019-05-07 14:14:30 +08:00
fi
2019-07-12 15:53:54 +08:00
# install info
printf "${PURPLE}[Info]\n"
printf "\t version = ${version}\n"
printf "\t path = ${path}\n"
printf "${RESET}\n"
# download and decompression
mkdir -p ${path}
curl -o ${path}/apache-tomcat-${version}.tar.gz https://archive.apache.org/dist/tomcat/tomcat-8/v${version}/bin/apache-tomcat-${version}.tar.gz
tar zxf ${path}/apache-tomcat-${version}.tar.gz -C ${path}
2019-05-07 14:14:30 +08:00
2019-07-12 15:53:54 +08:00
printf "${GREEN}<<<<<<<< install tomcat end.${RESET}\n"