scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit 54c56adbccdd652684632fd00238cfdbe2e9bc7c
parent fdd8acfc3c025504f586ce819d2b512605442483
Author: lostd <lostd@2f30.org>
Date:   Wed, 11 Dec 2013 19:57:27 +0200

separate diffs with a newline

Diffstat:
Mcvspast | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cvspast b/cvspast @@ -35,11 +35,11 @@ test $N -le $CUR || N=$CUR echo "HEAD is revision 1.$CUR" echo "Performing $N diffs" -echo # perform diffs in pairs while test $N -gt 0; do PREV=$(expr $CUR - 1) + echo cvs diff -r1.$PREV -r1.$CUR $FILE CUR=$PREV N=$(expr $N - 1)