View Single Post
Old 06-05-2014, 10:33 PM   #5
sbailey85
Minors (Single A)
 
Join Date: Apr 2010
Posts: 94
If you are doing this on Mac or Linux you have access to bash you could use this in the directory of your sql files find ./ -type f -iname '*.sql | while read lines ; do mysql -u user -p'password' dbname < $lines ; done
sbailey85 is offline   Reply With Quote