feat(脚本): 兼容个性化安装、修改log打印、修改许可证、修改xray-core->Xray-core

pull/534/merge
mack-a 2020-11-27 14:27:36 +08:00
parent b19e5f1478
commit b4e9b7f99f
1 changed files with 123 additions and 97 deletions

View File

@ -58,7 +58,7 @@ initVar(){
# 2.个性化安装 # 2.个性化安装
v2rayAgentInstallType= v2rayAgentInstallType=
# 当前的个性化安装方式 # 当前的个性化安装方式 01234
currentCustomInstallType= currentCustomInstallType=
# 选择的个性化安装方式 # 选择的个性化安装方式
@ -147,7 +147,7 @@ readInstallType(){
coreInstallType=1 coreInstallType=1
fi fi
elif [[ -d "/etc/v2ray-agent/v2ray/conf" && -f "/etc/v2ray-agent/v2ray/conf/02_VLESS_TCP_inbounds.json" ]] elif [[ -d "/etc/v2ray-agent/xray/conf" && -f "/etc/v2ray-agent/xray/conf/02_VLESS_TCP_inbounds.json" ]]
then then
xrayCoreConfigFilePath=/etc/v2ray-agent/xray/conf/02_VLESS_TCP_inbounds.json xrayCoreConfigFilePath=/etc/v2ray-agent/xray/conf/02_VLESS_TCP_inbounds.json
v2rayAgentInstallType=2 v2rayAgentInstallType=2
@ -164,20 +164,20 @@ readInstallType(){
# 检测个性化安装的方式 # 检测个性化安装的方式
readCustomInstallType(){ readCustomInstallType(){
customConf= customConf=
currentCustomInstallType=
if [[ "${v2rayAgentInstallType}" = "2" ]] if [[ "${v2rayAgentInstallType}" = "2" ]]
then then
# currentCustomInstallType
local customConf= local customConf=
if [[ "${coreInstallType}" = "1" ]] if [[ "${coreInstallType}" = "1" ]]
then then
customConf="ls /etc/v2ray-agent/xray/conf|grep -v grep|grep inbounds.json|awk -F "[.]" '{print $1}'" customConf="/etc/v2ray-agent/xray/conf"
else else
customConf="ls /etc/v2ray-agent/v2ray/conf|grep -v grep|grep inbounds.json|awk -F "[.]" '{print $1}'" customConf="/etc/v2ray-agent/v2ray/conf"
fi fi
while read row while read row
do do
if [[ ! -z `echo ${row}|grep VLESS_TCP_inbounds` ]] if [[ ! -z `echo ${row}|grep VLESS_TCP_inbounds` ]]
then then
currentCustomInstallType=${currentCustomInstallType}'0' currentCustomInstallType=${currentCustomInstallType}'0'
fi fi
@ -193,7 +193,7 @@ readCustomInstallType(){
then then
currentCustomInstallType=${currentCustomInstallType}'3' currentCustomInstallType=${currentCustomInstallType}'3'
fi fi
done < <(echo ``) done < <(echo `ls ${customConf}|grep -v grep|grep inbounds.json|awk -F "[.]" '{print $1}'`)
fi fi
} }
@ -1113,7 +1113,7 @@ installV2RayService(){
rm -rf /etc/systemd/system/v2ray.service rm -rf /etc/systemd/system/v2ray.service
touch /etc/systemd/system/v2ray.service touch /etc/systemd/system/v2ray.service
execStart='/etc/v2ray-agent/v2ray/v2ray -config /etc/v2ray-agent/v2ray/config_full.json' execStart='/etc/v2ray-agent/v2ray/v2ray -config /etc/v2ray-agent/v2ray/config_full.json'
if [[ ! -z ${customInstallType} ]] if [[ ! -z ${selectCustomInstallType} ]]
then then
execStart='/etc/v2ray-agent/v2ray/v2ray -confdir /etc/v2ray-agent/v2ray/conf' execStart='/etc/v2ray-agent/v2ray/v2ray -confdir /etc/v2ray-agent/v2ray/conf'
fi fi
@ -1151,7 +1151,7 @@ installXrayService(){
rm -rf /etc/systemd/system/xray.service rm -rf /etc/systemd/system/xray.service
touch /etc/systemd/system/xray.service touch /etc/systemd/system/xray.service
execStart='/etc/v2ray-agent/xray/xray run -config /etc/v2ray-agent/xray/config_full.json' execStart='/etc/v2ray-agent/xray/xray run -config /etc/v2ray-agent/xray/config_full.json'
if [[ ! -z ${customInstallType} ]] if [[ ! -z ${selectCustomInstallType} ]]
then then
execStart='/etc/v2ray-agent/xray/xray run -confdir /etc/v2ray-agent/xray/conf' execStart='/etc/v2ray-agent/xray/xray run -confdir /etc/v2ray-agent/xray/conf'
fi fi
@ -1744,13 +1744,13 @@ EOF
# 没有path则回落到此端口 # 没有path则回落到此端口
local fallbacksList='{"dest":31296,"xver":0}' local fallbacksList='{"dest":31296,"xver":0}'
if [[ -z `echo ${customInstallType}|grep 4` ]] if [[ -z `echo ${selectCustomInstallType}|grep 4` ]]
then then
fallbacksList='{"dest":80,"xver":0}' fallbacksList='{"dest":80,"xver":0}'
fi fi
# VLESS_WS_TLS # VLESS_WS_TLS
if [[ ! -z `echo ${customInstallType}|grep 1` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 1` ]]
then then
fallbacksList=${fallbacksList}',{"path":"/'${customPath}'ws","dest":31297,"xver":1}' fallbacksList=${fallbacksList}',{"path":"/'${customPath}'ws","dest":31297,"xver":1}'
cat << EOF > /etc/v2ray-agent/v2ray/conf/03_VLESS_WS_inbounds.json cat << EOF > /etc/v2ray-agent/v2ray/conf/03_VLESS_WS_inbounds.json
@ -1784,7 +1784,7 @@ EOF
EOF EOF
fi fi
# VMess_TCP # VMess_TCP
if [[ ! -z `echo ${customInstallType}|grep 2` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 2` ]]
then then
fallbacksList=${fallbacksList}',{"path":"/'${customPath}'tcp","dest":31298,"xver":1}' fallbacksList=${fallbacksList}',{"path":"/'${customPath}'tcp","dest":31298,"xver":1}'
cat << EOF > /etc/v2ray-agent/v2ray/conf/04_VMess_TCP_inbounds.json cat << EOF > /etc/v2ray-agent/v2ray/conf/04_VMess_TCP_inbounds.json
@ -1826,7 +1826,7 @@ EOF
EOF EOF
fi fi
# VMess_WS # VMess_WS
if [[ ! -z `echo ${customInstallType}|grep 3` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 3` ]]
then then
fallbacksList=${fallbacksList}',{"path":"/'${customPath}'","dest":31299,"xver":1}' fallbacksList=${fallbacksList}',{"path":"/'${customPath}'","dest":31299,"xver":1}'
cat << EOF > /etc/v2ray-agent/v2ray/conf/05_VMess_WS_inbounds.json cat << EOF > /etc/v2ray-agent/v2ray/conf/05_VMess_WS_inbounds.json
@ -2000,8 +2000,8 @@ initXrayConfig(){
cat << EOF > /etc/v2ray-agent/xray/config_full.json cat << EOF > /etc/v2ray-agent/xray/config_full.json
{ {
"log": { "log": {
"access": "/etc/v2ray-agent/v2ray/v2ray_access.log", "access": "/etc/v2ray-agent/xray/xray_access.log",
"error": "/etc/v2ray-agent/v2ray/v2ray_error.log", "error": "/etc/v2ray-agent/xray/xray_error.log",
"loglevel": "debug" "loglevel": "debug"
}, },
"inbounds": [ "inbounds": [
@ -2199,13 +2199,13 @@ EOF
# 没有path则回落到此端口 # 没有path则回落到此端口
local fallbacksList='{"dest":31296,"xver":0}' local fallbacksList='{"dest":31296,"xver":0}'
if [[ -z `echo ${customInstallType}|grep 4` ]] if [[ -z `echo ${selectCustomInstallType}|grep 4` ]]
then then
fallbacksList='{"dest":80,"xver":0}' fallbacksList='{"dest":80,"xver":0}'
fi fi
# VLESS_WS_TLS # VLESS_WS_TLS
if [[ ! -z `echo ${customInstallType}|grep 1` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 1` ]]
then then
fallbacksList=${fallbacksList}',{"path":"/'${customPath}'ws","dest":31297,"xver":1}' fallbacksList=${fallbacksList}',{"path":"/'${customPath}'ws","dest":31297,"xver":1}'
cat << EOF > /etc/v2ray-agent/xray/conf/03_VLESS_WS_inbounds.json cat << EOF > /etc/v2ray-agent/xray/conf/03_VLESS_WS_inbounds.json
@ -2239,7 +2239,7 @@ EOF
EOF EOF
fi fi
# VMess_TCP # VMess_TCP
if [[ ! -z `echo ${customInstallType}|grep 2` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 2` ]]
then then
fallbacksList=${fallbacksList}',{"path":"/'${customPath}'tcp","dest":31298,"xver":1}' fallbacksList=${fallbacksList}',{"path":"/'${customPath}'tcp","dest":31298,"xver":1}'
cat << EOF > /etc/v2ray-agent/xray/conf/04_VMess_TCP_inbounds.json cat << EOF > /etc/v2ray-agent/xray/conf/04_VMess_TCP_inbounds.json
@ -2281,7 +2281,7 @@ EOF
EOF EOF
fi fi
# VMess_WS # VMess_WS
if [[ ! -z `echo ${customInstallType}|grep 3` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 3` ]]
then then
fallbacksList=${fallbacksList}',{"path":"/'${customPath}'","dest":31299,"xver":1}' fallbacksList=${fallbacksList}',{"path":"/'${customPath}'","dest":31299,"xver":1}'
cat << EOF > /etc/v2ray-agent/xray/conf/05_VMess_WS_inbounds.json cat << EOF > /etc/v2ray-agent/xray/conf/05_VMess_WS_inbounds.json
@ -2315,52 +2315,10 @@ EOF
} }
EOF EOF
fi fi
# VLESS_TCP
if [[ "${selectCoreType}" = "2" ]]
then
cat << EOF > /etc/v2ray-agent/xray/conf/02_VLESS_TCP_inbounds.json
{
"inbounds":[
{
"port": 443,
"protocol": "vless",
"tag":"VLESSTCP",
"settings": {
"clients": [
{
"id": "${uuid}",
"add": "${add}",
"email": "${domain}_VLESS_TLS_TCP"
}
],
"decryption": "none",
"fallbacks": [
${fallbacksList}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"alpn": [
"http/1.1"
],
"certificates": [
{
"certificateFile": "/etc/v2ray-agent/tls/${domain}.crt",
"keyFile": "/etc/v2ray-agent/tls/${domain}.key"
}
]
}
}
}
]
}
EOF
elif [[ "${selectCoreType}" = "3" ]]
then
cat << EOF > /etc/v2ray-agent/v2ray/xray/02_VLESS_TCP_inbounds.json # VLESS_TCP
cat << EOF > /etc/v2ray-agent/xray/conf/02_VLESS_TCP_inbounds.json
{ {
"inbounds":[ "inbounds":[
{ {
@ -2405,10 +2363,8 @@ EOF
] ]
} }
EOF EOF
fi
fi fi
} }
# 初始化Trojan-Go配置 # 初始化Trojan-Go配置
initTrojanGoConfig(){ initTrojanGoConfig(){
@ -2525,7 +2481,7 @@ defaultBase64Code(){
echo " vmess://${qrCodeBase64Default}" >> /etc/v2ray-agent/v2ray/usersv2ray.conf echo " vmess://${qrCodeBase64Default}" >> /etc/v2ray-agent/v2ray/usersv2ray.conf
echoContent yellow " ---> 通用json(VLESS+TCP+TLS)" echoContent yellow " ---> 通用json(VLESS+TCP+TLS)"
echoContent green ' {"port":"'${port}'","ps":"'${ps}'","tls":"tls","id":'"${id}"',"host":"'${host}'","type":"none","net":"tcp","add":"'${host}'","allowInsecure":0,"method":"none","peer":""}\n' echoContent green ' {"port":"'${port}'","ps":"'${ps}'","tls":"tls","id":'"${id}"',"host":"'${host}'","type":"none","net":"tcp","add":"'${host}'","allowInsecure":0,"method":"none","peer":""}\n'
echoContent green ' V2Ray v4.27.4+ 目前无通用订阅需要手动配置VLESS TCP、XTLS和TCP大部分一样其余内容不变请注意手动输入的流控flow类型v4.32.1之后不支持XTLS\n' echoContent green ' V2Ray v4.27.4+ 目前无通用订阅需要手动配置VLESS TCP、XTLS和TCP大部分一样其余内容不变请注意手动输入的流控flow类型v2ray-core v4.32.1之后不支持XTLSXray-core支持建议使用Xray-core\n'
elif [[ "${type}" = "vmessws" ]] elif [[ "${type}" = "vmessws" ]]
then then
@ -2580,6 +2536,7 @@ defaultBase64Code(){
showAccounts(){ showAccounts(){
readInstallType readInstallType
readConfigHostPathUUID readConfigHostPathUUID
readCustomInstallType
showStatus= showStatus=
echoContent skyBlue "\n进度 $1/${totalProgress} : 账号" echoContent skyBlue "\n进度 $1/${totalProgress} : 账号"
@ -2624,6 +2581,7 @@ showAccounts(){
local vmessTCPID=`echo ${vmessTCP}|jq .settings.clients[0].id` local vmessTCPID=`echo ${vmessTCP}|jq .settings.clients[0].id`
local vmessTCPEmail="`echo ${vmessTCP}|jq .settings.clients[0].email|awk -F '["]' '{print $2}'`" local vmessTCPEmail="`echo ${vmessTCP}|jq .settings.clients[0].email|awk -F '["]' '{print $2}'`"
local vmessTCPath=`echo ${vmessTCP}|jq .streamSettings.tcpSettings.header.request.path[0]` local vmessTCPath=`echo ${vmessTCP}|jq .streamSettings.tcpSettings.header.request.path[0]`
if [[ "${coreInstallType}" = "3" || "${coreInstallType}" = "1" ]] if [[ "${coreInstallType}" = "3" || "${coreInstallType}" = "1" ]]
then then
echoContent skyBlue "\n============================ VLESS TCP TLS/XTLS-origin ===========================" echoContent skyBlue "\n============================ VLESS TCP TLS/XTLS-origin ==========================="
@ -2671,7 +2629,7 @@ showAccounts(){
local tcpIDirect=`echo ${tcp}|jq .settings.clients[1].id` local tcpIDirect=`echo ${tcp}|jq .settings.clients[1].id`
local tcpDirectEmail="`echo ${tcp}|jq .settings.clients[1].email|awk -F '["]' '{print $2}'`" local tcpDirectEmail="`echo ${tcp}|jq .settings.clients[1].email|awk -F '["]' '{print $2}'`"
if [[ "${coreInstallType}" = "3" ]] if [[ "${coreInstallType}" = "3" || "${coreInstallType}" = "1" ]]
then then
echoContent skyBlue "\n============================ VLESS TCP TLS/XTLS-origin ===========================" echoContent skyBlue "\n============================ VLESS TCP TLS/XTLS-origin ==========================="
defaultBase64Code vlesstcp ${tcpEmail} "${tcpID}" "${currentHost}:${port}" ${add} defaultBase64Code vlesstcp ${tcpEmail} "${tcpID}" "${currentHost}:${port}" ${add}
@ -3106,23 +3064,30 @@ aliasInstall(){
fi fi
} }
# 个性化安装 # v2ray-core个性化安装
customInstall(){ customV2RayInstall(){
echoContent skyBlue "\n========================个性化安装============================" echoContent skyBlue "\n========================个性化安装============================"
echoContent yellow "VLESS前置默认安装0如果只需要安装0则只选择0即可" echoContent yellow "VLESS前置默认安装0如果只需要安装0则只选择0即可"
echoContent yellow "0.VLESS+TLS/XTLS+TCP" if [[ "${selectCoreType}" = "2" ]]
then
echoContent yellow "0.VLESS+TLS+TCP"
else
echoContent yellow "0.VLESS+TLS/XTLS+TCP"
fi
echoContent yellow "1.VLESS+TLS+WS[CDN]" echoContent yellow "1.VLESS+TLS+WS[CDN]"
echoContent yellow "2.VMess+TLS+TCP" echoContent yellow "2.VMess+TLS+TCP"
echoContent yellow "3.VMess+TLS+WS[CDN]" echoContent yellow "3.VMess+TLS+WS[CDN]"
echoContent yellow "4.Trojan、Trojan+WS[CDN]" echoContent yellow "4.Trojan、Trojan+WS[CDN]"
read -p "请选择[多选][例如:123]:" customInstallType read -p "请选择[多选][例如:123]:" selectCustomInstallType
echoContent skyBlue "--------------------------------------------------------------" echoContent skyBlue "--------------------------------------------------------------"
if [[ -z ${customInstallType} ]] if [[ -z ${selectCustomInstallType} ]]
then then
echoContent red " ---> 不可为空" echoContent red " ---> 不可为空"
customInstall customV2RayInstall
elif [[ "${customInstallType}" =~ ^[0-4]+$ ]] elif [[ "${selectCustomInstallType}" =~ ^[0-4]+$ ]]
then then
cleanUp xrayClean
totalProgress=17 totalProgress=17
installTools 1 installTools 1
# 申请tls # 申请tls
@ -3131,7 +3096,7 @@ customInstall(){
handleNginx stop handleNginx stop
initNginxConfig 4 initNginxConfig 4
# 随机path # 随机path
if [[ ! -z `echo ${customInstallType}|grep 1` ]] || [[ ! -z `echo ${customInstallType}|grep 3` ]] || [[ ! -z `echo ${customInstallType}|grep 4` ]] if [[ ! -z `echo ${selectCustomInstallType}|grep 1` ]] || [[ ! -z `echo ${selectCustomInstallType}|grep 3` ]] || [[ ! -z `echo ${selectCustomInstallType}|grep 4` ]]
then then
randomPathFunction 5 randomPathFunction 5
customCDNIP 6 customCDNIP 6
@ -3143,7 +3108,8 @@ customInstall(){
installV2Ray 8 installV2Ray 8
installV2RayService 9 installV2RayService 9
initV2RayConfig custom 10 initV2RayConfig custom 10
if [[ ! -z `echo ${customInstallType}|grep 4` ]] cleanUp xrayDel
if [[ ! -z `echo ${selectCustomInstallType}|grep 4` ]]
then then
installTrojanGo 11 installTrojanGo 11
installTrojanService 12 installTrojanService 12
@ -3161,16 +3127,76 @@ customInstall(){
handleV2Ray start handleV2Ray start
# 生成账号 # 生成账号
checkGFWStatue 15 checkGFWStatue 15
readInstallType
readConfigHostPathUUID
readCustomInstallType
showAccounts 16 showAccounts 16
else else
echoContent red " ---> 输入不合法" echoContent red " ---> 输入不合法"
customInstall customV2RayInstall
fi fi
} }
# Xray-core个性化安装
customXrayInstall(){
echoContent skyBlue "\n========================个性化安装============================"
echoContent yellow "VLESS前置默认安装0如果只需要安装0则只选择0即可"
echoContent yellow "0.VLESS+TLS/XTLS+TCP"
echoContent yellow "1.VLESS+TLS+WS[CDN]"
echoContent yellow "2.VMess+TLS+TCP"
echoContent yellow "3.VMess+TLS+WS[CDN]"
echoContent yellow "4.Trojan、Trojan+WS[CDN]"
read -p "请选择[多选][例如:123]:" selectCustomInstallType
echoContent skyBlue "--------------------------------------------------------------"
if [[ -z ${selectCustomInstallType} ]]
then
echoContent red " ---> 不可为空"
customXrayInstall
elif [[ "${selectCustomInstallType}" =~ ^[0-4]+$ ]]
then
cleanUp v2rayClean
totalProgress=17
installTools 1
# 申请tls
initTLSNginxConfig 2
installTLS 3
handleNginx stop
initNginxConfig 4
# 随机path
if [[ ! -z `echo ${selectCustomInstallType}|grep 1` ]] || [[ ! -z `echo ${selectCustomInstallType}|grep 3` ]] || [[ ! -z `echo ${selectCustomInstallType}|grep 4` ]]
then
randomPathFunction 5
customCDNIP 6
fi
nginxBlog 7
handleNginx start
# 安装V2Ray
installXray 8
installXrayService 9
initXrayConfig custom 10
cleanUp v2rayDel
if [[ ! -z `echo ${selectCustomInstallType}|grep 4` ]]
then
installTrojanGo 11
installTrojanService 12
initTrojanGoConfig 13
handleTrojanGo stop
handleTrojanGo start
else
# 这里需要删除trojan的服务
handleTrojanGo stop
rm -rf /etc/v2ray-agent/trojan/*
rm -rf /etc/systemd/system/trojan-go.service
fi
installCronTLS 14
handleXray stop
handleXray start
# 生成账号
checkGFWStatue 15
showAccounts 16
else
echoContent red " ---> 输入不合法"
customXrayInstall
fi
}
# 选择核心安装---v2ray-core、xray-core、锁定版本的v2ray-core[xtls] # 选择核心安装---v2ray-core、xray-core、锁定版本的v2ray-core[xtls]
selectCoreInstall(){ selectCoreInstall(){
echoContent skyBlue "\n功能 1/${totalProgress} : 选择核心安装" echoContent skyBlue "\n功能 1/${totalProgress} : 选择核心安装"
@ -3182,13 +3208,19 @@ selectCoreInstall(){
read -p "请选择:" selectCoreType read -p "请选择:" selectCoreType
case ${selectCoreType} in case ${selectCoreType} in
1) 1)
xrayCoreInstall
if [[ "${selectInstallType}" = "2" ]]
then
customXrayInstall
else
xrayCoreInstall
fi
;; ;;
2) 2)
v2rayCoreVersion= v2rayCoreVersion=
if [[ "${selectInstallType}" = "2" ]] if [[ "${selectInstallType}" = "2" ]]
then then
customInstall customV2RayInstall
else else
v2rayCoreInstall v2rayCoreInstall
fi fi
@ -3197,7 +3229,7 @@ selectCoreInstall(){
v2rayCoreVersion=v4.32.1 v2rayCoreVersion=v4.32.1
if [[ "${selectInstallType}" = "2" ]] if [[ "${selectInstallType}" = "2" ]]
then then
customInstall customV2RayInstall
else else
v2rayCoreInstall v2rayCoreInstall
fi fi
@ -3213,7 +3245,7 @@ selectCoreInstall(){
# v2ray-core 安装 # v2ray-core 安装
v2rayCoreInstall(){ v2rayCoreInstall(){
cleanUp xrayClean cleanUp xrayClean
customInstallType= selectCustomInstallType=
totalProgress=17 totalProgress=17
installTools 2 installTools 2
# 申请tls # 申请tls
@ -3242,15 +3274,12 @@ v2rayCoreInstall(){
handleTrojanGo start handleTrojanGo start
# 生成账号 # 生成账号
checkGFWStatue 16 checkGFWStatue 16
readInstallType
readConfigHostPathUUID
readCustomInstallType
showAccounts 17 showAccounts 17
} }
# xray-core 安装 # xray-core 安装
xrayCoreInstall(){ xrayCoreInstall(){
customInstallType= selectCustomInstallType=
cleanUp v2rayClean cleanUp v2rayClean
totalProgress=17 totalProgress=17
@ -3283,9 +3312,6 @@ xrayCoreInstall(){
handleTrojanGo start handleTrojanGo start
# 生成账号 # 生成账号
checkGFWStatue 16 checkGFWStatue 16
readInstallType
readConfigHostPathUUID
readCustomInstallType
showAccounts 17 showAccounts 17
} }
# 主菜单 # 主菜单
@ -3293,12 +3319,12 @@ menu(){
cd cd
echoContent red "\n==============================================================" echoContent red "\n=============================================================="
echoContent green "作者mack-a" echoContent green "作者mack-a"
echoContent green "当前版本v2.1.12" echoContent green "当前版本v2.1.13"
echoContent green "Githubhttps://github.com/mack-a/v2ray-agent" echoContent green "Githubhttps://github.com/mack-a/v2ray-agent"
echoContent green "描述:七合一共存脚本" echoContent green "描述:七合一共存脚本"
echoContent red "==============================================================" echoContent red "=============================================================="
echoContent yellow "1.安装" echoContent yellow "1.安装"
echoContent yellow "2.任意组合安装[临时屏蔽]" echoContent yellow "2.任意组合安装"
echoContent skyBlue "-------------------------工具管理-----------------------------" echoContent skyBlue "-------------------------工具管理-----------------------------"
echoContent yellow "3.查看账号" echoContent yellow "3.查看账号"
echoContent yellow "4.自动排错 [已废弃]" echoContent yellow "4.自动排错 [已废弃]"
@ -3322,9 +3348,9 @@ menu(){
selectCoreInstall selectCoreInstall
;; ;;
2) 2)
echoContent red " ---> 暂不开放" # echoContent red " ---> 暂不开放"
exit 0; # exit 0;
# selectCoreInstall selectCoreInstall
;; ;;
3) 3)
showAccounts 1 showAccounts 1