#!/bin/sh

# Store the fingering info in .fingerees and finger the remote
# host to find out who fingered us.  This is done in a separate
# shell in order to avoid printing those damned [pid] messages
# to the other machine.

echo "Remote Host $1 ($2) at `date`" >> $HOME/.fingerees
finger @$2 >> $HOME/.fingerees &
