blob: ca6b211eafd7075d88f1cc398bd420d056f9c607 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Spellchecks the release notes, install scripts, and proto non-html files.
LANG=C; export LANG
(ls *install* proto/* | grep -E -v 'stop|Makefile|html|\.proto' | mantools/deroff; cat RELEASE_NOTES) | spell | grep -F -vxf proto/stop
|