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