7 lines
245 B
Bash
Executable file
7 lines
245 B
Bash
Executable file
#!/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
|