#!/bin/sh
#
#
#
if [ `/usr/ucb/whoami` = "thor" ]; then
  kill `cat /export/home/thor/httpd/logs/httpd.pid`
  echo "HTTPD killed."
else
  echo "You must be thor to run this command."
fi
