Script:1797
Talk0
1,599pages on
this wiki
this wiki
Revision as of 01:41, May 15, 2012 by 125.103.229.2 (Talk)
The svnvimdiff script requires tempfile command. But it doesn't exist in my CentOS and FreeBSD system. So I modified the script:
#patch=`tempfile -p $suffix`
- orig=`tempfile -p $suffix`
patch=`mktemp -t $suffix.XXXXXXXXXX` orig=`mktemp -t $suffix.XXXXXXXXXX`