29 lines
682 B
Bash
29 lines
682 B
Bash
|
#!/bin/bash
|
||
|
if ! command -v socat &> /dev/null; then
|
||
|
if [[ -f "/usr/bin/apt-get" ]];then
|
||
|
apt-get update -y
|
||
|
apt-get install socat -y
|
||
|
elif [[ -f "/usr/bin/apt" ]];then
|
||
|
apt update -y
|
||
|
apt install socat -y
|
||
|
elif [[ -f "/usr/bin/pacman" ]];then
|
||
|
pacman -Syu --noconfirm
|
||
|
pacman -Sy --noconfirm socat
|
||
|
else
|
||
|
echo "socat未安装"
|
||
|
exit
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
if [[ ! -f "${HOME}/.acme.sh/acme.sh" ]];then
|
||
|
rm -rf ${HOME}/.apple.sh
|
||
|
declare mail
|
||
|
read -p "请输入用来申请域名的邮箱:" mail
|
||
|
if [[ ! $mail =~ .*@.* ]];then
|
||
|
echo "邮箱不合法"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
curl https://get.acme.sh | sh -s "email=$mail"
|
||
|
fi
|