til

"Today I Learned" or little things I learned day by day.


Project maintained by lsnt4 Hosted on GitHub Pages — Theme by mattgraham

Import All SQL Files In A Directory Into MySQL

for SQL in *.sql; do DB=${SQL/\.sql/}; echo Importing $DB; mysql -u root -pMySuperSecretPassword $DB < $SQL; done

Source: StackOverflow