- 论坛徽章:
- 0
|
多谢楼上各位,赋值是能赋值了,不过又遇到了一个问题:
- #! /bin/bash
- uninstalldate=${1:-`date +%Y-%m-%d -d'1 day ago'`}
- sql="SELECT \`t2\`.\`usf_id\` as \`序列\`, \`t2\`.\`usf_reason\` as \`卸载原因\`, \`t1\`.\`usf_description\` as \`详细描述\`, \`t2\`.\`uninstalltime\` as \`卸载时间\`, \`t2\`.\`usf_softwarever\` as \`软件版本\`,
- \`table_num_mcode\`, \`table_id_mcode\` from \`bbt_api\`.\`user_software_extend\` as \`t1\`, (select \`usf_id\`, from_unixtime(\`usf_uninstall_timestamp\`) as \`uninstalltime\`, \`usf_softwarever\`, \`usf_reaso
- n\`, \`table_num_mcode\`, \`table_id_mcode\` from \`bbt_api\`.\`user_software_feedback\` WHERE \`usf_uninstall_timestamp\` between unix_timestamp('${uninstalldate}') and unix_timestamp('${uninstalldate} 23:59:5
- 9') and \`usf_reason\` <> '0') as \`t2\` WHERE \`t1\`.\`usf_id\` = \`t2\`.\`usf_id\` and \`t1\`.\`usf_description\` <> '0'"
- /usr/local/webserver/mysql/bin/mysql -hxxx.xxx.xxx.xxx -uxxx -pxxxx -e"$sql" | while read line
- do
- eval $(awk 'FS="\t"{print "infos=("$1" "$2" "$3" "$4" "$5" "$6" "$7")"}')
- /usr/local/webserver/mysql/bin/mysql -hxx.xx.xx.xx -N -uxxx -pxxx -e"SELECT \`mcode\` FROM \`360_jishi_users\`.\`mcode_${infos[6]}\` WHERE \`id\` = "${infos[7]}
- done >> ./test.log
复制代码 我发现使用eval去执行awk 'FS="\t"{print "infos=("$1" "$2" "$3" "$4" "$5" "$6" "$7")"}'的结果后,只能读取一行数据了,也就是while read line分行读取貌似只读取了一行。test.log里面只有一行数据。而实际上第一个sql是有多行数据的,请教这个是什么原因造成的?版主说我这样接管道不行,请问有没有别的办法解决我这种需求? |
|