gpt4 book ai didi

mysql - mysql备份脚本语法错误

转载 作者:行者123 更新时间:2023-11-30 23:15:20 25 4
gpt4 key购买 nike

我在我的 macbook pro 中使用一个脚本来备份我的开发应用程序的 Mysql 数据库,它工作正常。但是我试图在我的 ubuntu 服务器测试中使用它并给出了这个错误:语法错误:“(”意外(预期“完成”)

在这行代码中:

table_types=($($MYSQL -u $DB_USER -p$DB_PASS -e 
"show table status from $DB" | awk '{ if ($2 == "MyISAM" || $2 == "InnoDB") print $1,$2}'))

有人可以帮助我吗?

最佳答案

您忘记打开括号“(”。试试这个:

table_types=($($MYSQL -u $DB_USER -p$DB_PASS -e "show table status from $DB" | awk '({ if ($2 == "MyISAM" || $2 == "InnoDB") print $1,$2}'))

关于mysql - mysql备份脚本语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18136020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com