#!/bin/bash echo "Creating MySQL user and database" PASS=$3 if [ -z "$3" ]; then PASS=`openssl rand -base64 8` fi mysql -u root <