标签: mysql bash shell
我试图通过脚本在变量中获得MySQL查询的结果。
我的代码:
connect_string="mysql -vvv -username -pass -host databasename" count=$($connect_string -e "select count(*) from tabeleName;") echo $count
但我在synatx中遗漏了什么吗?
请帮助找到正确的纠正方法。