blob: b81ce1f977b6dda79d40931f3d576cb18dba5115 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Spellchecks the proto HTML files.
LANG=C; export LANG
mantools/dehtml proto/*html proto/*.proto | spell | grep -F -vxf proto/stop | grep -F -vxf proto/stop.spell-proto-html
|