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