标签: mysql bash passwords
可能重复: How to execute Mysql command from a shell script?
我正在尝试使用bash脚本执行.sql文件。但我在连接MySQL时遇到问题。这是我到目前为止所做的:
.sql
#! /bin/sh PWD="thepassword" mysql -p -u theuser < Randomsqlfile.sql echo $PWD
当提示密码时,没有任何内容填写。
答案 0 :(得分:4)
制作本:
mysql -utheuser -pthepassword <Randomsqlfile.sql