#!/bin/bash
while read line
do
uid=`echo $line | awk '{print $1}'`
ttime=`echo $line | awk '{print $2}'`
#rlt=`curl -s "http://127.0.0.1:6310/2/admin/graph/v2/enforce/graph/add.json" -d "source=2975945008&sourceId=$2&addtime=$ttime&graph_type=follower&targetIds=$uid"`
echo $uid" "$ttime
done < $1