xref: /freebsd/usr.bin/fortune/tools/Do_spell (revision 5ca8e32633c4ffbbcd6762e5888b6a4ba0708c6c)
1#!/bin/sh -
2
3F=_spell.$$
4echo $1
5spell < $1 > $F
6sort $F $1.sp.ok | uniq -u | column
7rm -f $F
8