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:
11
src/tools/make_diff/difforig
Executable file
11
src/tools/make_diff/difforig
Executable 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
|
Reference in New Issue
Block a user