~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/tools/make_diff/difforig

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
:
 
2
if [ "$#" -eq 0 ]
 
3
then    APATH="."
 
4
else    APATH="$1"
 
5
fi
 
6
find $APATH -name '*.orig' -print | sort | while read FILE
 
7
do
 
8
        NEW="`dirname $FILE`/`basename $FILE .orig`"
 
9
        echo "$NEW" 1>&2
 
10
        diff -c $FILE $NEW
 
11
done