加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backup.sh 655 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化