Skip to content

Instantly share code, notes, and snippets.

@skillmatic-co
Created December 14, 2015 19:14
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save skillmatic-co/aa5e107d93c0f54436cb to your computer and use it in GitHub Desktop.
Save skillmatic-co/aa5e107d93c0f54436cb to your computer and use it in GitHub Desktop.
#!/bin/bash
USER="root"
PASSWORD=""
FILES="/Users/tenold/Backups/MySQL/*"
for f in $FILES
do
echo "Processing $f file..."
mysql -u $USER -p$PASSWORD < $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment