#!/bin/sh
# Wipe out a site's data and add it to the "avoid" list.
# Note that data under http/$s/ is not deleted.

for s
do	Kill -QUIT $s
	rm -f */$s*
	Ignore $s
done
