#!/bin/sh FINGER=/usr/ucb/finger echo Content-type: text/html echo if [ -x $FINGER ]; then if [ $# = 0 ]; then cat << EOM Finger Gateway

Finger Gateway

This is a gateway to "finger". Type a user@host combination in your browser's search dialog.

EOM else echo \ $FINGER "$*" fi else echo Cannot find finger on this system. fi