#! /bin/sh
#
# A front-end to ispell which allows it to act like the "spell" program
#

case $# in
	0)	ispell -l | sort | uniq ;;
	*)	cat $@ | ispell -l | sort | uniq ;;
esac
