#!/bin/sh

UPTIME=/usr/bin/uptime

echo Content-type: text/html
echo
echo \<PLAINTEXT\>
echo

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


