mysql – 如何在重定向<< EOF期间运行bash命令
作者:互联网
我知道有一些方法可以在重定向期间运行bash命令,但我不知道它是如何完成的.
我想做这样的事情:
#!/bin/bash
mysql -uUser -pPasswd << EOF
echo 'I wanna echo something by using echo which is run by bash'
use Mydb
some sql commands here
commit;
EOF
我曾经错误地使用“in the”<<<<<<<< EOF“,但现在未能成功.
解决方法:
您可以在mysql命令行客户端中使用system
command:
#!/bin/bash
mysql -uUser -pPasswd << EOF
system echo 'I wanna echo something by using echo which is run by bash';
use Mydb
some sql commands here
commit;
EOF
标签:eof,bash,shell,mysql,io-redirection 来源: https://codeday.me/bug/20190825/1714812.html