#!/bin/sh
#    sHUP pat...
#     HUP pat...
#
# This sends a HUP signal to any processes whose ps line matches the
# pattern(s).  See the Kill script for further information.

for p 
do	echo "	$p"
	Kill -HUP "$p"
done
