#!/bin/sh
echo "This is in a script!"
if [ `who | wc -l` -gt 10 ] ; then
	echo "Isoptera is busy today!"
else
	echo "Isoptera is sadly underused"
fi

