Skip to content

Instantly share code, notes, and snippets.

@zeshanshani
Forked from skillmatic-co/import.sh
Created April 13, 2018 11:01
Show Gist options
  • Save zeshanshani/507c8a292c2062752922e1afb3654aca to your computer and use it in GitHub Desktop.
Save zeshanshani/507c8a292c2062752922e1afb3654aca 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