#!/usr/bin/sh
#
# Author:   Mitch Richling<richmit@member.ams.org>
# IP:       Copyright 1997 by Mitch Richling.  All rights reserverd.
# File:     patchmatch.sh
# Key word: Patch sun solairs compare check
# Notes:    This program takes a host name as it's first and only 
#           argument.  It will then tell you what patches are on 
#           the named host that are NOT on the host you are logged
#           into.

rsh $1 showrev -p | grep '^Patch: ' | cut -f2 -d\  | /home/sysadmin/bin/checkpatch.pl 

