#!/bin/sh

FORTUNE=`which fortune`

echo Content-type: text/html
echo

echo \<PLAINTEXT\>
echo

if [ -x $FORTUNE ];  then
	$FORTUNE
else 
	echo Cannot find fortune command on this system.
fi


