1.mysql -hhostname -uuser -ppsword -e "mysql_cmd"
2.
mysql -hhostname -uuser -ppsword << EOF
mysql_cmd
EOF
如下简单例子:
#!/bin/bash
mysql -hservicedb-online -uroot -proot123 -e "use test;select * from tests;" #方法1实例
mysql -hservicedb-online -uroot -proot123 << EOF #方法2实例
use test;
select * tests;
EOF
时间: 2024-10-05 22:32:11