#!/bin/csh -f # skills # ------------------------------------------------------------------------------ # Shell script to look up a person's skills in my skills file. # ------------------------------------------------------------------------------ # Usage: See Usage section below or run with no arguments to see usage. # Assumptions: # Effects: # - Reports to stdout the skills of a person # Notes: # Implementation Notes: # Portability Issues: # Revision History: # $Log$ # ------------------------------------------------------------------------------ if ($#argv == 0) then echo "Usage: $0:t partial or full name or address" exit 1 endif search -i -H $1:q ~/fred/admin/TechList.lis set rc = $status exit $rc