xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/check-spell-history (revision 059c16a85b0b39d60ad6d18f53c09510815afa2b)
1#!/bin/sh
2
3# Spellchecks text in the HISTORY file, starting with 2022.
4
5LANG=C; export LANG
6
7sed '1,/^2022/d' HISTORY | spell | grep -F -vxf proto/stop | \
8	grep -F -vxf proto/stop.spell-cc | \
9	grep -F -vxf proto/stop.spell-history
10