1#!/bin/sh -
2#	$NetBSD$
3#
4#	@(#)Do_spell	8.1 (Berkeley) 5/31/93
5#
6
7F=_spell.$$
8echo $1
9spell < $1 > $F
10sort $F $1.sp.ok | uniq -u | column
11rm -f $F
12