summaryrefslogtreecommitdiff
path: root/show_all.sh
blob: f1f584f24445d63413fa47870aba4899f01cc4d1 (plain)
1
2
3
4
5
6
7
8
9
DELAY_S=20

while read l; do
	echo "${l}";
	ID=$(echo "${l}" | cut -d' ' -f 1)
	./get_json.sh ${ID} > ${ID}.json
	cat ${ID}.json | ./parse_json.sh ${ID}
	sleep ${DELAY_S}
done < words