Shell后台执行SQL语句

1,Shell后台执行SQL语句

mysql -uroot -p111111 -h127.0.0.1 << eof
    use db;
    source /home/db/src.sql;
eof

 要点:通过eof接管输入流

相关推荐