1. 程式人生 > >shell提取MySQL結果到變數中

shell提取MySQL結果到變數中

host=`mysql -u$user -p$pass -D $db -e "select host from user;"`

or

host=$(mysql -u$user -p$pass -D $db -e "select host from user;")

將結果用  | grep -v host 篩出來至變數中~不用迴圈了。。。

 

參考

百度知道~

迴圈取出結果至變數