1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Reorganize developers files.

This commit is contained in:
Bruce Momjian
1997-09-08 04:14:01 +00:00
parent 23db70bf73
commit 125079e6d7
12 changed files with 56 additions and 109 deletions

11
src/tools/make_diff/difforig Executable file
View File

@ -0,0 +1,11 @@
:
if [ "$#" -eq 0 ]
then APATH="."
else APATH="$1"
fi
find $APATH -name '*.orig' -print | sort | while read FILE
do
NEW="`dirname $FILE`/`basename $FILE .orig`"
echo "$NEW" 1>&2
diff -c $FILE $NEW
done