shell 读取文本并访问mysql

Posted faith

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 读取文本并访问mysql相关的知识,希望对你有一定的参考价值。

#!/bin/bash
File="redeemcode.csv"
#File=$1

database="d_redeem_info"

echo "check redeemcode state begin..."

while read line
do
if [ -z "$line" ];then
 echo "is null"
else
 #rlt=`mysql -D $database -h127.0.0.1 -uroot -proot -e "select * from  t_redeem_code where c_redeem_code = ‘${line}‘;" `
 rlt=$(mysql -D $database -h127.0.0.1 -uroot -proot -e "select * from  t_redeem_code where c_redeem_code = ‘${line}‘;" )
fi

done < ${File}

echo "check redeemcode state end..."

shell传参:$0 为执行的文件名,$n,n代表第几个参数

读文件:

while read line
do
  echo $line
done < ${File}

逻辑判断:

if [ -z "$line" ];then
 echo "is null"
else
 echo "not null"
fi

接收mysql操作返回值:

rlt=mysql -h ......
rlt=$(mysql -h ......)

以上是关于shell 读取文本并访问mysql的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本怎样读取文件的值,并赋值给变量

shell 读取一个文件,要按一定格式截取并读取其值

Linux shell 读取文本中某几行数据并输出成新文件

shell中使用while循环ssh的注意事项

怎么用shell脚本 去 读取MySQL中的数据,并把数据传到该脚本中? 谢谢!

Shell编程三剑客之sed