The following command deletes all databases in mysql dbms except mysql, information_schema dbs.
mysql -uroot -p<password> -e "show databases" | grep -v Database | grep -v mysql| grep -v information_schema| gawk '{print "drop database " $1 ";select sleep(0.1);"}' | mysql -uroot -p<password>
Thanks to the Mohinish Post Blog
source
share