Last Updated: February 25, 2016
·
121
· jedateach

Quickly drop the temp MYSQL databases that SilverStripe unit tests leave behind

mysql -e "show databases;" | grep ss_tmpdb | while read -r line ; do mysql -e "drop database $line;" ; done;