diff options
Diffstat (limited to 'mantools/check-spell-cc')
-rwxr-xr-x | mantools/check-spell-cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mantools/check-spell-cc b/mantools/check-spell-cc new file mode 100755 index 0000000..ab22470 --- /dev/null +++ b/mantools/check-spell-cc @@ -0,0 +1,8 @@ +#!/bin/sh + +# Spellchecks comments in C source code. See mantools/comment.c for +# 'comment' source code. + +LANG=C; export LANG + +find . -name *.[hc] | xargs cat | comment | mantools/deroff | spell | fgrep -vxf proto/stop | fgrep -vxf proto/stop.spell-cc |