#!/bin/sh
#    KillSite site..
# Wipe out a site's data and add it to the "avoid" list.
# We also kill all processes with the site name on the command line.
# Note that data under cache/$s/ is not deleted.

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