svn diff without spaces
I am sic of spaces and having svn diff that does not get the spaces removed. So here is a simple script that does the stuff that you can use as your diff-cmd : #!/bin/bash for i in $@;do echo $i |grep -q ")" && continue echo $i |grep -q "(" && continue t="$t $i" done diff -bBw $t