7 lines
196 B
Bash
Executable file
7 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Finds double words in proto html files.
|
|
|
|
LANG=C; export LANG
|
|
|
|
ls proto/*.html proto/*.proto | xargs mantools/dehtml | mantools/find-double | grep -F -vxf proto/stop.double-proto-html
|