From d6c90fe5a36c396c57b9543bbd4d05b3b3db9d37 Mon Sep 17 00:00:00 2001 From: lsy Date: Sat, 21 Sep 2024 16:36:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=A4=87=E4=BB=BD=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E5=B1=8F=E8=94=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Config/Automation/backup.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Config/Automation/backup.sh b/Config/Automation/backup.sh index d005e27..a4787fc 100644 --- a/Config/Automation/backup.sh +++ b/Config/Automation/backup.sh @@ -14,10 +14,14 @@ if [[ -f "${path}/backup.sh" ]];then echo "该路径文件已经存在" fi +read -p "请输入数据目录,默认 /var/www :" web_path +if [[ -z ${web_path} ]];then + web_path='/var/www' +fi -for item in "$web_path"/ ; do +for item in "$web_path"/* ; do [[ $ignore -eq 1 ]] && echo "当前脚本会备份的目录如下" - declare item_name=$(basename "\$item") + declare item_name=$(basename "$item") echo "${ignore}.${item_name}" ignore=[[$ignore+1]] done @@ -25,10 +29,7 @@ done echo "请输入需要屏蔽的目录用逗号隔开" read -p "请输入" ignore -read -p "请输入数据目录,默认 /var/www :" web_path -if [[ -z ${web_path} ]];then - web_path='/var/www' -fi + read -p "是否备份到本地,默认 关闭 ,输入 y 开启:" local_pick read -p "是否备份到百度网盘,默认 开启 ,输入 n 关闭:" baidu_pick read -p "是否备份到阿里云盘 默认 开启 , 输入 n 关闭:" aliyun_pick