repo.or.cz
/
PostgreSQL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git]
/
src
/
tools
/
make_diff
/
difforig
blob
6d41bf6df3fb7985bbae6c1f409e7cbcc722cd15
1
#!/bin/sh
2
3
# $PostgreSQL$
4
5
if
[
"
$#
"
-eq
0
]
6
then
APATH
=
"."
7
else
APATH
=
"
$1
"
8
fi
9
find
$APATH
-name
'*.orig'
-print
|
sort
|
while
read
FILE
10
do
11
NEW
=
"`dirname
$FILE
`/`basename
$FILE
.orig`"
12
echo
"
$NEW
"
1
>&
2
13
diff
-c
$FILE $NEW
14
done