clrd (117B)
1 #!/bin/sh 2 # colorize diffs 3 4 sed -e "s/^-/$(tput setaf 1)-/" \ 5 -e "s/^+/$(tput setaf 2)+/" \ 6 -e "s/$/$(tput sgr0)/"