14a672054Schristos#!/bin/sh 24a672054Schristos 34a672054Schristos# Finds double words in install and proto text files. 44a672054Schristos 54a672054SchristosLANG=C; export LANG 64a672054Schristos 7*059c16a8Schristos(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 8