#!/bin/sh PRISTINE=/home/kfogel/src/pristine-ccvs COLLAB=/home/kfogel/src/ccvs cd ${PRISTINE} make clean find . -name "*.rej" | xargs rm -f find . -name "*.orig" | xargs rm -f rm -f config.h config.status config.log config.cache \ stamp-h src/options.h src/options.h-SAVED \ ./Makefile contrib/Makefile contrib/elib/Makefile \ diff/Makefile doc/Makefile emx/Makefile \ lib/Makefile macintosh/Makefile man/Makefile \ os2/Makefile src/Makefile tools/Makefile \ vms/Makefile windows-NT/Makefile windows-NT/SCC/Makefile \ zlib/Makefile \ doc/*.info* \ contrib/clmerge contrib/cln_hist contrib/commit_prep \ contrib/cvs2vendor contrib/cvs_acls contrib/cvscheck \ contrib/log contrib/log_accum contrib/mfpipe \ contrib/rcs-to-cvs contrib/rcs2log contrib/rcslock \ contrib/sccs2rcs cd ${COLLAB} make clean find . -name "*.rej" | xargs rm -f find . -name "*.orig" | xargs rm -f rm -f config.h config.status config.log config.cache \ stamp-h src/options.h src/options.h-SAVED \ ./Makefile contrib/Makefile contrib/elib/Makefile \ diff/Makefile doc/Makefile emx/Makefile \ lib/Makefile macintosh/Makefile man/Makefile \ os2/Makefile src/Makefile tools/Makefile \ vms/Makefile windows-NT/Makefile windows-NT/SCC/Makefile \ zlib/Makefile \ doc/*.info* \ contrib/clmerge contrib/cln_hist contrib/commit_prep \ contrib/cvs2vendor contrib/cvs_acls contrib/cvscheck \ contrib/log contrib/log_accum contrib/mfpipe \ contrib/rcs-to-cvs contrib/rcs2log contrib/rcslock \ contrib/sccs2rcs echo "" echo "================== start diff ===================" echo "" diff --exclude=CVS -crN ${PRISTINE} .