Skip to content

Instantly share code, notes, and snippets.

@muffycompo
Forked from skillmatic-co/import.sh
Created June 1, 2017 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muffycompo/3ad5f00407d14d2830fff4e60c821e41 to your computer and use it in GitHub Desktop.
Save muffycompo/3ad5f00407d14d2830fff4e60c821e41 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