import/Export MySQL Database. Change the $values to match your database credentials
## Import
mysql -u $db_user -h $db_host -p $db_name < db.sql # this is the path to the file that will be imported
## Export
mysql -u $db_user -h $db_host -p $db_name > db.sql # this is the path to the file that will be generated