#! /bin/sh
PWDDIR=/usr/windsor/bishop/passwd/deszip.3/guesser
SUFFIX=.diff
cd $PWDDIR
PLIST=
for i in *$SUFFIX
do
	PLIST="PLIST -p $i"
done
if test "x$PLIST" = "x"
then
	echo There are no new password entries
	exit 1
fi
$GUESS $* $PLIST
