清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash #backup mysql data #Auther:arezone #website:http://www.olinux.org.cn DBDIR=/data/mysql BACKDIR=/data/bak/mysql TIME=` date -d "today" +%F` DB=$( ls -p $DBDIR | grep / | tr -d / | grep -Ev 'information_schema|performance_schema|mysql| test ') /etc/init.d/mysqld stop if [ -d $BACKDIR ] then echo "OK!" else mkdir -p $BACKDIR fi cd $DBDIR for i in $DB do tar czf $BACKDIR/$i\_db\_$TIME. tar .gz $i done /etc/init.d/mysqld start find $BACKDIR -name "*.tar.gz" - type f -mtime +15 - exec rm {} \; & gt ;/dev/null 2& gt ;&1 |