Skip to content

Instantly share code, notes, and snippets.

@onnimonni
Created February 26, 2017 20:42
Show Gist options
  • Save onnimonni/72178e21190e20466a4555308aee0d65 to your computer and use it in GitHub Desktop.
Save onnimonni/72178e21190e20466a4555308aee0d65 to your computer and use it in GitHub Desktop.
#!/bin/bash
databases=`mysql -e "SHOW DATABASES;" | grep -Ev "(Database|information_schema|performance_schema)"`
for db in databases; do
mysqldump --force --opt --databases $db > $db.sql
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment