summaryrefslogtreecommitdiffstats
path: root/bin/docdiff
blob: 59f9472d3d72c6e5a19db7630858291826d16207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if test $# -eq 0; then
    for f in doc/user/*.in; do
        sgml=doc/user/`basename $f .in`.sgml
        echo $f:
        python bin/sconsoutput.py $f | diff $DIFFFLAGS $sgml -
    done
else
    for a in $*; do
        f=doc/user/$a.in
        sgml=doc/user/$a.sgml
        echo $f:
        python bin/sconsoutput.py $f | diff $DIFFFLAGS $sgml -
    done
fi