Initial import
This commit is contained in:
parent
2353a15709
commit
4bf351afaf
1 changed files with 31 additions and 0 deletions
31
svndiff.sh
Normal file
31
svndiff.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue