Skip to content

Instantly share code, notes, and snippets.

@aaronthorp
Created April 10, 2015 02:01
Show Gist options
  • Save aaronthorp/aeba5403bdb038844021 to your computer and use it in GitHub Desktop.
Save aaronthorp/aeba5403bdb038844021 to your computer and use it in GitHub Desktop.
Dump all MySQL to seperate files
mkdir ~/db && mysql -s -r -u root -p{Secret} -e 'show databases' | while read db; do mysqldump -u root -p{Secret} $db -r ~/db/${db}.sql; [[ $? -eq 0 ]] && gzip ~/db/${db}.sql; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment