#!/bin/sh FINGER=`which finger` echo Content-type: text/html echo if [ -x $FINGER ]; then if [ $# = 0 ]; then cat << EOM
If the name matches several people, then a list will be displayed which shows their names, e-mail id's and job titles. If this is the case, scan the list for the person for whom you are looking, take note of their userid, and look them up using the USERID search facility.
Note--Your browser must support forms for this feature to work
$FINGER "$*"@ducserv.duc.auburn.edu fi else echo Cannot find finger on this system. fi