#!/bin/csh
#
#
if ( `whoami` == root ) then
/export/home/local/httpd/httpd \
	-d /export/home/local/httpd \
	-f /export/home/local/httpd/conf/httpd.conf \
	&
  echo "HTTPD started."
else
  echo "You must be root to run this command."
endif
