Home | History | Annotate | Line # | Download | only in mantools
      1 #!/bin/sh
      2 
      3 # Spellchecks comments in C source code. See mantools/comment.c for
      4 # 'comment' source code.
      5 
      6 LANG=C; export LANG
      7 
      8 find . -name *.[hc] | xargs cat | comment | mantools/deroff | spell | grep -F -vxf proto/stop | grep -F -vxf proto/stop.spell-cc
      9