#!/bin/sh
#
#
echo "usage: available.sh <user_name>"
#
if who | grep -s $1 > /dev/null
then
echo "$1 is logged on to this machine"
else
echo "$1 is not available"
fi
