#!/bin/sh
# spell -- replacement for spell
PATH="/usr/bin:$PATH"
USAGE='spell [file]'

# at most one argument allowed

if test $# -gt 1
then
	echo "$USAGE" >&2
	exit 1
fi

deroff "$1" | aspell list | sort -u
