#!/bin/sh

CMD=/bin/hostname

echo Content-type: text/plain
echo

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

