#!/bin/sh
#
# Special finger target .help --
#	Display usage information.  Advertise only those functions
#	available to remote fingering if connection is non-local.
#
# $Id:$
#
/bin/cat <<EOF
Usage:
	finger [options] name ...

options:
	-l	long listings (default for outside requests)
	-info	long listings (GNU finger only)
	-face	request face bitmap (GNU finger only)

special names:
	.all		list all logins
	.local		list all local logins
        .faces		list available faces
	.help		print this message
	.site		print site information
EOF
#
case "$2" in
local)
	/bin/cat <<EOF
	.users		list all users
	.free		list free machines
	.clients	list all clients
EOF
	;;
esac
