summaryrefslogtreecommitdiff
path: root/gendiff
blob: c00ce51568a3f4cb5844cf52021c7a4fbb99fb90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

[ -z "$1" -o -z "$2" ] && {
# usage
  echo "usage: $0 <directory> <diff-extension>" 1>&2
  exit 1
}

find $1 \( -name "*$2" -o -name ".*$2" \) -print |
while read f; do
    U=-u
    [ "`basename $f`" = "ChangeLog$2" ] && U=-U0
    diff ${U} $f `echo $f | sed s/$2\$//`
done