3
如何将密码传递给mysql命令行
我将MySQL密码保存在文件中foo.php,例如P455w0rd,当我尝试使用它时: $ cat foo.php | grep '$dbpwd=' | cut -d '"' -f 2 | mysql -U root -p mydb -h friendserver Enter password: (holds) $ echo P455w0rd | mysql -u root -p mydb -h friendserver Enter password: (holds) 这两个选项仍要求输入密码,从哪发送密码的正确方法是stdin什么?