#!/bin/sh

if [ `who | cut -d " " -f 1 | sort | uniq | wc -l` -gt 5 ] 
then
	echo "Isoptera is being used!"
else
	echo "Isoptera does not have many users right now"
fi

