我知道有一些方法可以在重定向期间运行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