#!/bin/sh
# Add a list of hosts to the URLs file as "to be avoided"

for h 
do	echo "Avoid	$h" >>URLs
done
