#!/bin/csh
#
#
#
if ( `whoami` == root ) then
  kill `cat /export/home/local/httpd/logs/httpd.pid`
  echo "HTTPD killed."
else
  echo "You must be root to run this command."
endif
