xref: /freebsd/usr.bin/fortune/tools/Do_spell (revision 62cfcf62f627e5093fb37026a6d8c98e4d2ef04c)
1#!/bin/sh -
2#
3#	@(#)Do_spell	8.1 (Berkeley) 5/31/93
4#
5
6F=_spell.$$
7echo $1
8spell < $1 > $F
9sort $F $1.sp.ok | uniq -u | column
10rm -f $F
11