#!/bin/sh
#SYNOPSIS
#  Scan host...
#DESCRIPTION
#  This starts up scans of the named hosts, all in parallel.

V_abcbot=2; export V_abcbot 
for	h
do	echo Scan $h ...
	(./abcbot +CURLs $h >log/$h 2>&1; echo Scan $h DONE.) &
	sleep 1
done
