svnup.sh
changeset 113 cc110ea79126
parent 0 29654efe3188
child 335 f3298fda6c37
--- a/svnup.sh	Sun Aug 22 17:35:17 2004 +0000
+++ b/svnup.sh	Sun Aug 22 19:40:50 2004 +0000
@@ -8,10 +8,15 @@
 Base=`svn info | grep "Revision" | xargs -n 1 | tail -n 1`
 
 # updates the source
-svn update
+svn update > svn.log
+cat svn.log
 
 # if the revision number changed
 if [ "$Base" -ne "`svn info | grep "Revision" | xargs -n 1 | tail -n 1`" ]; then
 # displays the log changes
 svn log -r HEAD:$(($Base + 1))
 fi
+
+# displays merged files
+cat svn.log|grep "^G"
+cat svn.log|grep "^C"
\ No newline at end of file