#!/bin/sh

FINGER=/usr/bin/finger

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

