Colorized diff outupt

To have a colorized version of diff, where kdiff3 isn't available, try any of the following:

$> colordiff file1 file2

$> diff -u file1 file2 | colordiff

$> diff fileA fileB | vim -R -

$> vim -d fileA fileB

$> vimdiff fileA fileB fileC fileD