#!/bin/sh
# Update a list of hosts.

# Settings we might want during debugging:
V_UpdateHost=1; export V_UpdateHost 
V_abcbot=2; export V_abcbot 

for	h
do
#	echo $h
	./abcbot $h <URLs >log/$h 2>&1
#	UpdateHost $h <URLs >UpdateHost.$h.log 2>&1
done
