代码拉取完成,页面将自动刷新
#!/bin/bash
# config
# db_user and db_password is saved in docker container config,here is not safely.
# container_id=""
container_id="a5d0fa9ee58d"
db_name="mytest"
save_dir="/home/jeremiah/code/shell/mysql-backup/files/"
file_name=$(date +'%Y-%m-%d_%H:%M:%S')'.sql.gz'
file_path=$save_dir$file_name
# check save dir
if [ ! -d $save_dir ];then
mkdir $save_dir
fi
# splice command
command="mysqldump $db_name | gzip > $file_path"
if [ ! -z $container_id ];then
command="docker exec $container_id "$command
fi
# run string command
eval $command
# history clear
find $save_dir -name '*.sql.gz' -type f -ctime +7 -exec rm -fr {} \; > /dev/null 2>&1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。