1
0
Fork 0

(svn r1992) Show the ./svnup.sh output in $PAGER (less if unset).

release/0.4.5
pasky 2005-03-11 19:35:50 +00:00
parent fea811a4b7
commit 83df863b6c
1 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,10 @@
# This is only useful for users of CLI based SVN clients
# Written by Bjarni
[ "$PAGER" ] || PAGER=less
(
# reads what version you have now
Base=`svn info | grep "Revision" | xargs -n 1 | tail -n 1`
@ -20,3 +24,5 @@ fi
# displays merged files
cat svn.log|grep "^G"
cat svn.log|grep "^C"
) | $PAGER