1#!/bin/sh
2
3# Finds double words in C comments. See mantools/comment.c for 'comment'
4# source code.
5
6LANG=C; export LANG
7
8find src -name '*.[hc]' | xargs cat | comment | mantools/deroff | mantools/find-double | grep -F -vxf proto/stop.double-cc
9