#!/bin/sh -u # # $0 (no arguments) # # Finger the linux test machine and show non-idallen users with line numbers. # NOTE: because the IP address is coded here, it will fail when the IP # address of the linux test machine changes! # # The Algonquin ITS Dept. blocks "finger" from working into / out of # the College, so you can't try this from home. # # by Ian! idallen@ncf.ca June 14, 2001 export PATH=/bin:/usr/bin umask 022 # The +3 skips over the first two title lines output by finger # finger @205.211.47.76 | tail -n +3 | grep -v idallen | cat -b