Atualmente, estou usando PostgreSQL
e faço algo que parece realmente próximo do que você deseja alcançar, portanto, este é meu script de backup:
#!/bin/bash
#
#------------------------------------------------------------------------------
# Editable parameters:
#
## Filesystem Location to place backups.
BACKUP_DIR="/path/to/backup/folder"
## The user used to connect to postgres instance
USER="postgres"
PWD="pwd_in_plaintext_is_not_a_"
## Just the date string that will be appended to the backup files name
BACKUP_DATE="$(date +'%d_%m_%Y_%H_%M_%S')"
## Numbers of days you want to keep copie of your databases
NUMBER_OF_DAYS=7
## Uncomment following line if you want to overwrite the whole folder each time
#rm -rf ${BACKUP_DIR}/backupFulldb-*
#
#------------------------------------------------------------------------------
# don't change anything below this line
# Vacumm al databases before begin to backup
vacuumdb --all -U ${USER}
DATABASES='psql -U ${USER} -l -t | cut -d'|' -f1 | sed -e 's/ //g' -e '/^$/d''
for i in ${DATABASES}; do
if [ "$i" != "template0" ] && [ "$i" != "template1" ]; then
echo Dumping $i to ${BACKUP_DIR}
pg_dump -U ${USER} --column-inserts $i | gzip -c > ${BACKUP_DIR}/backupFulldb-$i-${BACKUP_DATE}.out.gz
fi
done
find ${BACKUP_DIR} -type f -prune -mtime +${NUMBER_OF_DAYS} -exec rm -f {} \;
Você só precisa de uma consulta listando todos os dbs em sua instância do mysql e substituí-la pela matriz DATABASES
. Lendo este post e este , eu suponho que você poderia, por exemplo. faça o seguinte:
while read line
do
DATABASES+=("$line")
done < <(mysql -u${USER} -p${PWD} INFORMATION_SCHEMA -e "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA")
E, com certeza, corrija os nomes do dbs que você deseja excluir:
if [ "$i" != "mysql" ] && [ "$i" != "information_schema" ]; then
Espero que isso ajude