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