接到统计需求,需要对一批对一批uid过滤,只保留10月1日之后注册的uid,用户注册时间可以从MysqL里面拿,写了个shell脚本
ps:用户信息使用十库十表存储,像 12345这个uid存储在5这个库中的4这个表里面
#! /bin/bash
hostip="107.0.0.1"
port=6304
username="net_budao_root"
pwd="123456"
database="db_bd"
first_login_time="2017-10-01"
#构造用户信息表,用户信息使用十库十表
function getDbTb(){
first=${1:0-1:1}
second=${1:0-2:1}
echo "db_budao_"$first".t_user_"$second
}
#查询这个uid是否存在
function exist(){
tb=`getDbTb $1`
sql="select count(1) from $tb where uid = $1 and from_unixtime(first_login_time) > \"$first_login_time\""
res=(`MysqL -h10.25.68.144 -P6304 -unet_budao_root -ppbVo9teu -Ddb_bd -e "$sql" | awk 'NR>1'`) # NR>1 去掉查询的第一行
echo $res
}
for uid in $(cat $1)
do
res=`exist $uid`
if [ $res -eq 1 ]
then
echo $uid >> $1".dump"
# else
# echo "false"
fi
done
原文链接:https://www.f2er.com/bash/390028.html