blob: 3119be8c218c49573ba7eff11f48820ccddc4f3f (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Spellchecks text in the HISTORY file, starting with 2022.
LANG=C; export LANG
sed '1,/^2022/d' HISTORY | spell | grep -F -vxf proto/stop | \
grep -F -vxf proto/stop.spell-cc | \
grep -F -vxf proto/stop.spell-history
|