Created
July 1, 2016 13:38
-
-
Save waleedahmad/6bed2abe4277a4d7e378cfe02260418d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
USER="user" | |
PASSWORD="password" | |
OUTPUT="/home/backup_directory" | |
rm -rf "$OUTPUT"/*.gz > /dev/null 2>&1 | |
databases=`mysql --user=$USER --password=$PASSWORD -e "SHOW DATABASES;" | tr -d "| " | grep -v Database` | |
for db in $databases; do | |
if [[ "$db" != "information_schema" ]] && [[ "$db" != "mysql" ]] && [[ "$db" != "performance_schema" ]] && [[ "$db" != _* ]] ; then | |
echo "Dumping database: $db" | |
mysqldump --force --opt --user=$USER --password=$PASSWORD --databases $db > $OUTPUT/`date +%Y-%m-%d`.$db.sql | |
gzip $OUTPUT/`date +%Y-%m-%d`.$db.sql | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment