Basically, I need to setup a database from a bash script. I have a script db.sql that does all this. Now how do I run this script from bash?
Database system is mysql
If you want to run a script to a database:
mysql -u user -p data_base_name_here < db.sql
You simply need to start mysql and feed it with the content of db.sql:
mysql
db.sql
mysql -u user -p < db.sql