写脚本会遇到问题就是感觉不知道怎么和数据库交互探索了几天参考了很多文章发现了这种写法
#!/bin/bash
host=地址
db=数据库名
user=用户名
pass=密码
tou=$(mysql -u ${user} -h ${host} -p${pass} -D ${db} -Bse "SELECT title from typecho_contents where cid=$I")
写脚本会遇到问题就是感觉不知道怎么和数据库交互探索了几天参考了很多文章发现了这种写法
#!/bin/bash
host=地址
db=数据库名
user=用户名
pass=密码
tou=$(mysql -u ${user} -h ${host} -p${pass} -D ${db} -Bse "SELECT title from typecho_contents where cid=$I")
Comments | NOTHING