mysql shell run command code example
Example 1: run mysql command from bash
mysql --user="$user" --password="$password" --database="$database" --execute="DROP DATABASE $user; CREATE DATABASE $database;"
Example 2: mysql execute command from command line
mysql -u <user> -p -e "select * from schema.table"