#!/bin/sh
#
#
if [ `/usr/ucb/whoami` = "thor" ]; then
/net/sun1/export/home3/local/httpd/httpd \
	-d /export/home/thor/httpd \
	-f /export/home/thor/httpd/conf/httpd.conf \
	&
  echo "HTTPD started."
else
  echo "You must be thor to run this command."
fi
