#!/bin/sh

FORTUNE=`which fortune`

echo Content-type: text/plain
echo

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


