14a672054Schristos#!/bin/sh 24a672054Schristos 34a672054Schristos# Finds double words in C comments. See mantools/comment.c for 'comment' 44a672054Schristos# source code. 54a672054Schristos 64a672054SchristosLANG=C; export LANG 74a672054Schristos 8*059c16a8Schristosfind src -name '*.[hc]' | xargs cat | comment | mantools/deroff | mantools/find-double | grep -F -vxf proto/stop.double-cc 9