linux-shell脚本执行sql脚本
#!/bin/bash
echo "start init db, create_tables & init_tables"
service mysqld stop
sleep 1
service mysqld start
sleep 1
db_curr=`pwd`
mysql <<EOF
source ${db_curr}/db_script/create_tables.sql;
source ${db_curr}/db_script/init_tables.sql;
use mysql;
update user set password=password("123456") where user='root';
flush privileges;
EOF