#!/bin/sh

#	BSDI	uptime,v 1.1.1.1 1995/01/11 01:04:36 polk Exp

UPTIME=/usr/bin/uptime

echo Content-type: text/plain
echo

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


