Initial import

This commit is contained in:
Erik C. Thauvin 2006-02-15 01:05:15 +00:00
parent 2353a15709
commit 4bf351afaf

31
svndiff.sh Normal file
View file

@ -0,0 +1,31 @@
#!/bin/sh
# svndiff -- svn diff with vimdiff.
#
# Written by Erik C. Thauvin (erik@thauvin.net)
# Februrary 14, 2006
#
# Copyright (C) 2006 Erik C. Thauvin. All rights reserved.
#
# This software is provided "as is" without express or implied warranties.
#
# Permission is granted to use, copy, modify and distribute this software,
# provided this disclaimer and copyright are preserved on all copies. This
# software may not, however, be sold or distributed for profit, or included
# with other software which is sold or distributed for profit, without the
# permission of the author.
#
# $Id$
PROGNAME=`basename $0`
if [ $# != 1 ]
then
echo "Usage: $PROGNAME <file>"
exit 2
else
TEMP=/tmp/$1.tmp.$$
svn cat $1 > $TEMP
vimdiff $TEMP $1
rm -f $TEMP
fi