Skip to content

Instantly share code, notes, and snippets.

@rajeshisnepali
Created February 27, 2019 04:19
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 rajeshisnepali/759a781617a65e2f315d23c82e1f29cb to your computer and use it in GitHub Desktop.
Save rajeshisnepali/759a781617a65e2f315d23c82e1f29cb to your computer and use it in GitHub Desktop.
drop database in mysql
#!/bin/bash
#format
# drop-db.sh '`test-1234`'
mysql -u root -p <<MYSQL_SCRIPT
DROP DATABASE $1;
MYSQL_SCRIPT
echo Mysql Database $1 dropped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment