blob: bab88bc6d3c75dbd0f5c37350df0f187aecfd3ef (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Finds double words in install and proto text files.
LANG=C; export LANG
(ls *install* proto/* | egrep -v 'stop|Makefile|html|\.proto' | xargs mantools/deroff; cat RELEASE_NOTES) | mantools/find-double | fgrep -vxf proto/stop.double-install-proto-text
|