#!/bin/bash # Variable setup DB_NAME="employees" USER_NAME="nhncloud" USER_PASSWORD="nhnpassword" DB_URL="https://github.com/datacharmer/test_db.git" # 1. Clone the test_db repository echo "Cloning test_db repository..." cd ~ git clone $DB_URL # 2. Load employees.sql file into MySQL echo "Loading employees.sql into MySQL..." cd ~/test_db sudo mysql -u root < employees.sql # 3. Configure MySQL user and permissions echo "Configuring MySQL user and permissions..." sudo mysql -u root <