blob: 19b8140a0a30896d326f75bc73e56dbd7d2aa926 (
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/* | egrep -v 'stop|Makefile|html|\.proto' | mantools/deroff; cat RELEASE_NOTES) | spell | fgrep -vxf proto/stop
|