masqmail-0.2

view misc/are-options-documented @ 170:0f0e4e7cd762

added misc/list-versions This script helps to check if the versions numbers in the project are the same as the one for the release. This script is motivated by the 0.2.27 release in which masqmail introduces itself as being version 0.2.26.
author meillo@marmaro.de
date Mon, 19 Jul 2010 14:01:13 +0200
parents
children
line source
1 #!/bin/sh
2 #
3 # checks if all recognized options are documented
4 # run from masqmail's repository root dir
5 #
6 # Note: this script is far from perfect, but its development time to
7 # usage value ratio is quite good :-)
9 docs="/tmp/masqmail-opts-docs.$$"
10 code="/tmp/masqmail-opts-code.$$"
12 cat man/masqmail.*.5 | grep -o '^\\fB[^(\\]*\\f.' |
13 egrep -v 'OBSOLETE|http://' | sed 's,^\\fB,,; s,[\\ =].*,,' |
14 sort -u | grep -v '^val$' >"$docs"
16 cat src/conf.c | grep 'lval,.*"' |
17 sed 's,[^"]*",,; s,"\, [0-9]*,",; s,".*,,' | sort -u >"$code"
19 diff -U 0 "$code" "$docs" | grep -v '^@@'
21 rm -f "$docs" "$code"