2002-02-11 20:59:26 +00:00
|
|
|
#!/bin/csh -f -c
|
|
|
|
#
|
|
|
|
# This script updates the entire tree, saves the output in cvs.out,
|
|
|
|
# and then separately prints out the files that had merge conflicts,
|
|
|
|
# those that were merged successfully, and those that are new.
|
|
|
|
# Note that this script uses "cvs update -P -d".
|
|
|
|
#
|
|
|
|
# USAGE:
|
|
|
|
# cvsupdate ## normal run
|
|
|
|
# cvsupdate -n ## run grep commands on output of the last run of cvs
|
|
|
|
# cvsupdate -h ## usage information
|
|
|
|
#
|
|
|
|
|
|
|
|
set pstatus = 0
|
|
|
|
onintr cleanup
|
|
|
|
alias usage 'echo "USAGE: $0:t [-h][-n]"; set pstatus = 1; goto cleanup'
|
|
|
|
|
|
|
|
set doit = 1
|
|
|
|
unset options_done
|
|
|
|
while ( !( $?options_done ) && ($#argv > 0))
|
|
|
|
switch ($argv[1])
|
|
|
|
case -h :
|
|
|
|
usage
|
|
|
|
case -n :
|
|
|
|
set doit = 0; shift argv; breaksw
|
|
|
|
default :
|
|
|
|
set options_done; breaksw
|
|
|
|
endsw
|
|
|
|
end
|
|
|
|
|
|
|
|
if ($doit == 1) then
|
|
|
|
/bin/mv -f cvs.out cvs.out.bak
|
|
|
|
cvs update -P -d >& cvs.out
|
|
|
|
else
|
|
|
|
echo ""; echo "Not updating files."; echo ""
|
|
|
|
endif
|
|
|
|
|
2002-04-29 19:11:01 +00:00
|
|
|
echo ""; echo " FILES UPDATED:"
|
|
|
|
grep '^U' cvs.out
|
|
|
|
|
|
|
|
echo ""; echo " UPDATE CONFLICTS OCCURRED FOR THE FOLLOWING FILES:"
|
2002-02-11 20:59:26 +00:00
|
|
|
grep '^C' cvs.out
|
|
|
|
|
2002-04-29 19:11:01 +00:00
|
|
|
echo ""; echo " FILES SUCCESSFULLY MERGED (or locally modified):"
|
2002-02-11 20:59:26 +00:00
|
|
|
grep '^M' cvs.out | grep -v Merging
|
|
|
|
|
|
|
|
echo ""; echo " NEW FILES AND DIRECTORIES:"
|
2002-04-29 19:11:01 +00:00
|
|
|
grep '^\?' cvs.out | & grep -v '\.bc' | grep -v Updating | grep -v cvsup | grep -v 'cvs.out' | grep -v gnumake.out | grep -v '\.mc$' | grep -v '\.s$' | grep -v '\.native'
|
2002-02-11 20:59:26 +00:00
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
|
|
|
|
#=========================================================
|
|
|
|
# CODE TO BE EXECUTED IF INTERRUPT IS RECEIVED
|
|
|
|
#=========================================================
|
|
|
|
cleanup:
|
|
|
|
exit($pstatus)
|