Files
scripts/local/mg/integrate.csh
2016-03-18 05:30:16 -04:00

9 lines
166 B
Tcsh
Executable File

#!/bin/csh
if ( $1 == "" || $2 == "" || $3 == "" ) then
echo 'Syntax: <file name> <rev1> <rev2>.'
exit
endif
cvs diff -tc -r $2 -r $3 $1 | patch -l -F 3 $1