aboutsummaryrefslogtreecommitdiff
path: root/tools/cmp-cvs.sh
blob: 2e6c9ab1a18be01f9d62d92f78c8ba2dea0f85be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# $Id: cmp-cvs.sh,v 1.2 2009-06-25 16:54:21 nicm Exp $

rm diff.out
touch diff.out

for i in *.[ch]; do
    diff -u $i /usr/src/usr.bin/tmux/$i >diff.tmp
    set -- `wc -l diff.tmp`
    [ $1 -eq 8 ] && continue
    echo $i
    cat diff.tmp >>diff.out
done