blob: 24b73f489ca59dc5a90b063ba33300bbfd7d34b6 (
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/* | grep -E -v 'stop|Makefile|html|\.proto' | xargs mantools/deroff; cat RELEASE_NOTES) | mantools/find-double | grep -F -vxf proto/stop.double-install-proto-text
|