22 lines
491 B
Bash
22 lines
491 B
Bash
#!/bin/bash
|
|
|
|
# 备份文件要保存的目录
|
|
basepath='/home/wwwroot/farm/common/config/'
|
|
|
|
if [ ! -d "$basepath" ]; then
|
|
mkdir -p "$basepath"
|
|
fi
|
|
|
|
filename='game_config'
|
|
|
|
# 将生成的SQL文件压缩
|
|
/bin/nice -n 19 tar zPcf $basepath$filename-$(date +%Y%m%d%H%M%S).json.tar.gz $basepath$filename.json
|
|
|
|
# 删除7天之前的备份数据
|
|
find $basepath -mtime +7 -name "*.json.tar.gz" -exec rm -rf {} \;
|
|
|
|
#crontab -e
|
|
#*/01 * * * * /bin/sh /root/mysqlbk/mysqlbk.sh
|
|
#service crond restart
|
|
|